CannotReturnError.st
author Claus Gittinger <cg@exept.de>
Fri, 07 Sep 2001 18:07:02 +0200
changeset 5998 c52f7b88e059
child 6009 a24f4df1cbef
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5998
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ContextError subclass:#CannotReturnError
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'Kernel-Exceptions'
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!CannotReturnError class methodsFor:'documentation'!
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
version
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/CannotReturnError.st,v 1.1 2001-09-07 16:06:52 cg Exp $'
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !