ArithmeticError.st
author Claus Gittinger <cg@exept.de>
Tue, 04 Sep 2001 12:33:32 +0200
changeset 5947 45351eedb5a1
child 6218 f528bf2bcc5f
permissions -rw-r--r--
initial checkin

"{ Package: 'stx:libbasic' }"

Error subclass:#ArithmeticError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Magnitude-Numbers'
!

!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:'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.1 2001-09-04 10:32:56 cg Exp $'
! !