NumberFormatError.st
author Stefan Vogel <sv@exept.de>
Fri, 09 May 2003 18:11:22 +0200
changeset 7280 7afcccb7c856
parent 6678 b2d3dad41600
child 7586 63e4900c8931
permissions -rw-r--r--
Fix pidgin spelling: 'does not exists' and 'not exists'
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
! !