RomanNumberFormatError.st
author Claus Gittinger <cg@exept.de>
Wed, 31 Jul 2002 12:33:29 +0200
changeset 6678 b2d3dad41600
child 6681 8a0708c0ef2c
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6678
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
NumberFormatError subclass:#RomanNumberFormatError
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!RomanNumberFormatError class methodsFor:'documentation'!
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
version
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/RomanNumberFormatError.st,v 1.1 2002-07-31 10:33:13 cg Exp $'
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !