ArithmeticError.st
author Claus Gittinger <cg@exept.de>
Tue, 18 May 2004 15:30:47 +0200
changeset 8363 a7644643904e
parent 8325 ad394527946b
child 8483 3e76a8fe740a
permissions -rw-r--r--
dont send obsolete message (OptionBox request:..form:..)

"{ Package: 'stx:libbasic' }"

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


!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.5 2004-04-22 15:28:12 stefan Exp $'
! !