BadRomanNumberFormatError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 22:13:34 +0200
changeset 7412 daae29634e02
parent 6680 db9c7f9ad960
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6680
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
RomanNumberFormatError subclass:#BadRomanNumberFormatError
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!BadRomanNumberFormatError class methodsFor:'documentation'!
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
version
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/BadRomanNumberFormatError.st,v 1.1 2002-07-31 13:14:54 cg Exp $'
db9c7f9ad960 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !