StreamError.st
author Claus Gittinger <cg@exept.de>
Tue, 17 Jun 2003 11:12:22 +0200
changeset 7385 852e84340d2b
parent 7232 1d05a293b8b0
child 7586 63e4900c8931
permissions -rw-r--r--
*** empty log message ***
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
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    14
    The parent of all stream errors.
6210
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
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    21
    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.3 2003-04-24 08:20:17 cg Exp $'
5990
41458048a33f initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
! !