UnderflowError.st
author Claus Gittinger <cg@exept.de>
Sun, 27 Apr 2003 17:40:18 +0200
changeset 7241 06359d192b65
parent 6690 07ef28245da8
child 7586 63e4900c8931
permissions -rw-r--r--
comment

"{ 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!