EndOfStreamError.st
changeset 8990 b49b2dab68cd
child 17711 39faaaf888b4
equal deleted inserted replaced
8989:55e8738f8b57 8990:b49b2dab68cd
       
     1 "
       
     2  COPYRIGHT (c) 2002 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 "{ Package: 'stx:libbasic' }"
       
    14 
       
    15 StreamError subclass:#EndOfStreamError
       
    16 	instanceVariableNames:''
       
    17 	classVariableNames:''
       
    18 	poolDictionaries:''
       
    19 	category:'Kernel-Exceptions-Errors'
       
    20 !
       
    21 
       
    22 !EndOfStreamError class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2002 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
       
    37 
       
    38 documentation
       
    39 "
       
    40     This error exception is raised on attempt to read after the end of a stream
       
    41     has been reached.
       
    42 
       
    43     It is only raised, if Stream>>signalAtEnd:true has been set.
       
    44 
       
    45     [author:]
       
    46         Stefan Vogel (stefan@zwerg)
       
    47 
       
    48     [instance variables:]
       
    49 
       
    50     [class variables:]
       
    51 
       
    52     [see also:]
       
    53         EndOfStreamNotification
       
    54 
       
    55 "
       
    56 ! !
       
    57 
       
    58 !EndOfStreamError class methodsFor:'initialization'!
       
    59 
       
    60 initialize
       
    61     NotifierString := 'end of stream'.
       
    62 ! !
       
    63 
       
    64 !EndOfStreamError class methodsFor:'documentation'!
       
    65 
       
    66 version
       
    67     ^ '$Header: /cvs/stx/stx/libbasic/EndOfStreamError.st,v 1.1 2005-11-16 08:45:55 stefan Exp $'
       
    68 ! !
       
    69 
       
    70 EndOfStreamError initialize!