JavaMethodWithException.st
author cg
Mon, 16 Nov 1998 15:17:54 +0000
changeset 454 38f590639d65
parent 427 a7083b7a8724
child 616 53bf2ec50346
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1997 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"


JavaMethod variableSubclass:#JavaMethodWithException
	instanceVariableNames:'exceptionTable'
	classVariableNames:''
	poolDictionaries:''
	category:'Java-Classes'
!

!JavaMethodWithException class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

! !

!JavaMethodWithException methodsFor:'accessing'!

exceptionTable
    ^ exceptionTable

    "Modified: / 16.4.1996 / 12:49:06 / cg"
    "Created: / 5.11.1998 / 19:58:38 / cg"
!

setExceptionTable:anArray
    exceptionTable := anArray.

    "Created: / 5.11.1998 / 19:58:43 / cg"
! !

!JavaMethodWithException class methodsFor:'documentation'!

version
    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaMethodWithException.st,v 1.3 1998/11/16 15:17:26 cg Exp $'
! !