InvalidReadError.st
changeset 25172 985406251ac3
parent 8728 d70396dc4e96
equal deleted inserted replaced
25171:f6bc2bf3ddda 25172:985406251ac3
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
       
    12 "{ Package: 'stx:libbasic' }"
    12 
    13 
    13 "{ Package: 'stx:libbasic' }"
    14 "{ NameSpace: Smalltalk }"
    14 
    15 
    15 ReadError subclass:#InvalidReadError
    16 ReadError subclass:#InvalidReadError
    16 	instanceVariableNames:''
    17 	instanceVariableNames:''
    17 	classVariableNames:''
    18 	classVariableNames:''
    18 	poolDictionaries:''
    19 	poolDictionaries:''
    33  other person.  No title to or ownership of the software is
    34  other person.  No title to or ownership of the software is
    34  hereby transferred.
    35  hereby transferred.
    35 "
    36 "
    36 ! !
    37 ! !
    37 
    38 
       
    39 !InvalidReadError class methodsFor:'initialization'!
       
    40 
       
    41 initialize
       
    42     NotifierString := 'stream does not support reading'.
       
    43 ! !
       
    44 
    38 !InvalidReadError methodsFor:'printing & storing'!
    45 !InvalidReadError methodsFor:'printing & storing'!
    39 
    46 
    40 description
    47 description
    41     ^ super description, ': ', parameter classNameWithArticle
    48     ^ super description, ': ', parameter classNameWithArticle
    42 ! !
    49 ! !
    43 
    50 
    44 !InvalidReadError class methodsFor:'documentation'!
    51 !InvalidReadError class methodsFor:'documentation'!
    45 
    52 
    46 version
    53 version
    47     ^ '$Header: /cvs/stx/stx/libbasic/InvalidReadError.st,v 1.3 2005-02-02 11:02:06 cg Exp $'
    54     ^ '$Header$'
    48 ! !
    55 ! !
       
    56 
       
    57 
       
    58 InvalidReadError initialize!