Parser.st
changeset 971 00581dfc0b59
parent 964 5fa44b4ff2cb
child 977 c1afbaf48a23
--- a/Parser.st	Mon Sep 20 09:56:10 1999 +0200
+++ b/Parser.st	Mon Sep 20 09:57:18 1999 +0200
@@ -31,6 +31,20 @@
 	category:'System-Compiler'
 !
 
+Exception subclass:#ParseError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:Parser
+!
+
+Parser::ParseError subclass:#UndefinedSuperclassError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	privateIn:Parser
+!
+
 !Parser class methodsFor:'documentation'!
 
 copyright
@@ -5195,6 +5209,6 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.225 1999-09-16 18:26:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.226 1999-09-20 07:57:18 cg Exp $'
 ! !
 Parser initialize!