ArithmeticError.st
author Stefan Vogel <sv@exept.de>
Fri, 11 Apr 2003 18:47:17 +0200
changeset 7205 903fef64420c
parent 6690 07ef28245da8
child 7586 63e4900c8931
permissions -rw-r--r--
#errorSignal -> #description

"{ Package: 'stx:libbasic' }"

Error subclass:#ArithmeticError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!ArithmeticError class methodsFor:'documentation'!

documentation
"
    ArithmeticError is the Superclass for arithmetic errors.

    Instance Variables:
        parameter - a MessageSend representing the operation that failed.
"
! !

!ArithmeticError class methodsFor:'initialization'!

initialize
    NotifierString := 'arithmetic error'.
! !

!ArithmeticError class methodsFor:'testing'!

mayProceed
    "return true, if the exception handler is allowed to proceed
     the execution where the exception occured."

    ^ true
! !

!ArithmeticError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ArithmeticError.st,v 1.3 2002-07-31 14:35:49 cg Exp $'
! !
ArithmeticError initialize!