UnderflowError.st
author Stefan Vogel <sv@exept.de>
Fri, 09 May 2003 18:11:22 +0200
changeset 7280 7afcccb7c856
parent 6690 07ef28245da8
child 7586 63e4900c8931
permissions -rw-r--r--
Fix pidgin spelling: 'does not exists' and 'not exists'

"{ Package: 'stx:libbasic' }"

RangeError subclass:#UnderflowError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!


!UnderflowError class methodsFor:'initialization'!

initialize
    NotifierString := 'underflow'.
! !

!UnderflowError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/UnderflowError.st,v 1.2 2002-07-31 14:34:10 cg Exp $'
! !
UnderflowError initialize!