SubclassResponsibilityError.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:21:14 +0200
changeset 7232 1d05a293b8b0
parent 6210 d7039e2ae776
child 7333 ada175120272
permissions -rw-r--r--
comments

"{ 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.4 2003-04-24 08:20:18 cg Exp $'
! !