ArithmeticError.st
author Claus Gittinger <cg@exept.de>
Tue, 03 Jun 2003 12:36:51 +0200
changeset 7327 ab17eb5f11a6
parent 6690 07ef28245da8
child 7586 63e4900c8931
permissions -rw-r--r--
printFormat

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