initial checkin
authorcg
Thu, 05 Nov 1998 19:13:58 +0000
changeset 422 52d7ad2a295d
parent 421 165be3b9ee05
child 423 08af061c56a8
initial checkin
JavaMethodWithException.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/JavaMethodWithException.st	Thu Nov 05 19:13:58 1998 +0000
@@ -0,0 +1,28 @@
+JavaMethod subclass:#JavaMethodWithException
+	instanceVariableNames:'exceptionTable'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Java-Classes'
+!
+
+
+!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.1 1998/11/05 19:13:58 cg Exp $'
+! !