ArithmeticError.st
author Stefan Vogel <sv@exept.de>
Thu, 22 Apr 2004 17:28:24 +0200
changeset 8325 ad394527946b
parent 7586 63e4900c8931
child 8483 3e76a8fe740a
permissions -rw-r--r--
Convert more instance based exceptions to class based exceptions

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