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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
Error subclass:#SubclassResponsibilityError
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    10
!SubclassResponsibilityError class methodsFor:'documentation'!
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    11
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    12
documentation
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    13
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    14
    Raised when a method which should have been reimplemented by a
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    15
    concrete subclass was not, and the method of the abstract class was
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    16
    invoked instead.
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    17
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5979
diff changeset
    18
! !
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
5979
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    20
!SubclassResponsibilityError class methodsFor:'queries'!
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    21
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    22
mayProceed
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    23
    "These errors are proceedable (with nil)."
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    24
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    25
    ^ true
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    26
! !
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    27
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
!SubclassResponsibilityError class methodsFor:'documentation'!
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
version
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    31
    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.4 2003-04-24 08:20:18 cg Exp $'
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
! !