NumberFormatError.st
author Claus Gittinger <cg@exept.de>
Fri, 02 Aug 2002 19:27:04 +0200
changeset 6707 790fc577c403
parent 6678 b2d3dad41600
child 7586 63e4900c8931
permissions -rw-r--r--
button labels uppercase
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
NumberConversionError subclass:#NumberFormatError
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
!NumberFormatError 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/NumberFormatError.st,v 1.1 2002-07-31 10:33:01 cg Exp $'
b2d3dad41600 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !