CannotResumeError.st
author Claus Gittinger <cg@exept.de>
Wed, 26 Sep 2001 15:11:37 +0200
changeset 6048 af4b1127f362
parent 6009 a24f4df1cbef
child 7233 52b21f304183
permissions -rw-r--r--
refactored - some methods moved from AbsoluteTime
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:#CannotResumeError
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:''
6009
a24f4df1cbef category change
Claus Gittinger <cg@exept.de>
parents: 5998
diff changeset
     7
	category:'Kernel-Methods'
5998
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
!CannotResumeError 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
6009
a24f4df1cbef category change
Claus Gittinger <cg@exept.de>
parents: 5998
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libbasic/CannotResumeError.st,v 1.2 2001-09-07 18:57:07 cg Exp $'
5998
c52f7b88e059 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
! !