EndOfStreamError.st
author Jan Vrany <jan.vrany@labware.com>
Sat, 29 Oct 2022 01:05:05 +0100
branchjv
changeset 25446 98fb817db6de
parent 17911 a99f15c5efa5
permissions -rw-r--r--
Add `Character >> isMathLetter` and `#isMathBinaryOperator`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8990
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     1
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2002 by eXept Software AG
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     4
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    10
 hereby transferred.
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    11
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
StreamError subclass:#EndOfStreamError
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
!EndOfStreamError class methodsFor:'documentation'!
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    23
copyright
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    24
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2002 by eXept Software AG
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    27
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    33
 hereby transferred.
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    34
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    35
!
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    36
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
documentation
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
    This error exception is raised on attempt to read after the end of a stream
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
    has been reached.
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
    It is only raised, if Stream>>signalAtEnd:true has been set.
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
    [author:]
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
        Stefan Vogel (stefan@zwerg)
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    47
    [instance variables:]
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
    [class variables:]
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    51
    [see also:]
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    52
        EndOfStreamNotification
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    53
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    54
"
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    55
! !
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    56
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    57
!EndOfStreamError class methodsFor:'initialization'!
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    58
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    59
initialize
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    60
    NotifierString := 'end of stream'.
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    61
! !
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    62
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    63
!EndOfStreamError class methodsFor:'documentation'!
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    64
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    65
version
17892
d86c8bd5ece3 Merged with CVS
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17869
diff changeset
    66
    ^ '$Header: /cvs/stx/stx/libbasic/EndOfStreamError.st,v 1.1 2005/11/16 08:45:55 stefan Exp $'
17761
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    67
!
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    68
b0e5971141bc Added Lookup and BuiltinLookup classes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17711
diff changeset
    69
version_SVN
17911
a99f15c5efa5 Updated with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17910
diff changeset
    70
    ^ '$Id: EndOfStreamError.st 10761 2012-01-19 11:46:00Z vranyj1 $'
8990
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    71
! !
b49b2dab68cd initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    72
17846
24edc476ac18 Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17845
diff changeset
    73
EndOfStreamError initialize!
17892
d86c8bd5ece3 Merged with CVS
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17869
diff changeset
    74
17910
8d796ca8bd1d Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17892
diff changeset
    75
17911
a99f15c5efa5 Updated with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 17910
diff changeset
    76