SubclassResponsibilityError.st
author Stefan Vogel <sv@exept.de>
Tue, 10 Jun 2003 09:59:45 +0200
changeset 7333 ada175120272
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***
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
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
     3
ProceedableError subclass:#SubclassResponsibilityError
5978
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
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    20
!SubclassResponsibilityError class methodsFor:'initialization'!
5979
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    21
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    22
initialize
5979
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    23
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    24
   NotifierString := 'method must be reimplemented in subclass'
5979
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    25
! !
c471707c1787 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5978
diff changeset
    26
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!SubclassResponsibilityError class methodsFor:'documentation'!
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
version
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    30
    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.5 2003-06-10 07:59:45 stefan Exp $'
5978
a2618e98cb13 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
! !
7333
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    32
ada175120272 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7232
diff changeset
    33
SubclassResponsibilityError initialize!