RomanNumberFormatError.st
author Claus Gittinger <cg@exept.de>
Wed, 31 Jul 2002 15:15:07 +0200
changeset 6681 8a0708c0ef2c
parent 6678 b2d3dad41600
child 7586 63e4900c8931
permissions -rw-r--r--
checkin from browser
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
6681
8a0708c0ef2c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6678
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/RomanNumberFormatError.st,v 1.2 2002-07-31 13:15:07 cg Exp $'
6678
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !