initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 31 Jul 2002 12:33:29 +0200
changeset 6678 b2d3dad41600
parent 6677 6467fed79219
child 6679 23d929227eb6
initial checkin
NaiveRomanNumberFormatError.st
NumberConversionError.st
NumberFormatError.st
RomanNumberFormatError.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NaiveRomanNumberFormatError.st	Wed Jul 31 12:33:29 2002 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+RomanNumberFormatError subclass:#NaiveRomanNumberFormatError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-Errors'
+!
+
+
+!NaiveRomanNumberFormatError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/NaiveRomanNumberFormatError.st,v 1.1 2002-07-31 10:33:29 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NumberConversionError.st	Wed Jul 31 12:33:29 2002 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+ArithmeticError subclass:#NumberConversionError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-Errors'
+!
+
+
+!NumberConversionError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NumberConversionError.st,v 1.1 2002-07-31 10:32:50 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NumberFormatError.st	Wed Jul 31 12:33:29 2002 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+NumberConversionError subclass:#NumberFormatError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-Errors'
+!
+
+
+!NumberFormatError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NumberFormatError.st,v 1.1 2002-07-31 10:33:01 cg Exp $'
+! !
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RomanNumberFormatError.st	Wed Jul 31 12:33:29 2002 +0200
@@ -0,0 +1,15 @@
+"{ Package: 'stx:libbasic' }"
+
+NumberFormatError subclass:#RomanNumberFormatError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Kernel-Exceptions-Errors'
+!
+
+
+!RomanNumberFormatError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/RomanNumberFormatError.st,v 1.1 2002-07-31 10:33:13 cg Exp $'
+! !