SubclassResponsibilityError.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Nov 2001 11:04:51 +0100
changeset 6210 d7039e2ae776
parent 5979 c471707c1787
child 7232 1d05a293b8b0
permissions -rw-r--r--
caetgory change and documentation added

"{ Package: 'stx:libbasic' }"

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

!SubclassResponsibilityError class methodsFor:'documentation'!

documentation
"
    raised when a method which should have been reimplemented by a
    concrete subclass was not, and the method of the abstract class was
    invoked instead.
"
! !

!SubclassResponsibilityError class methodsFor:'queries'!

mayProceed
    "These errors are proceedable (with nil)."

    ^ true
! !

!SubclassResponsibilityError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.3 2001-11-17 10:04:39 cg Exp $'
! !