StreamError.st
author Claus Gittinger <cg@exept.de>
Tue, 26 Feb 2002 14:02:26 +0100
changeset 6421 58dca33cf0fc
parent 6210 d7039e2ae776
child 7232 1d05a293b8b0
permissions -rw-r--r--
#valueNowOrOnUnwindDo: -> #ensure:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5990
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ProceedableError subclass:#StreamError
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
41458048a33f 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: 5990
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
5990
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    10
!StreamError class methodsFor:'documentation'!
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    11
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    12
documentation
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    13
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    14
    the parent of all stream errors.
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    15
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    16
! !
5990
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
!StreamError class methodsFor:'documentation'!
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
version
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5990
diff changeset
    21
    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.2 2001-11-17 10:04:09 cg Exp $'
5990
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
! !