OpenError.st
changeset 25169 366ba1117187
parent 15844 7870eacd55c3
equal deleted inserted replaced
25168:f6d06b0efa5d 25169:366ba1117187
     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 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 StreamError subclass:#OpenError
    16 StreamError subclass:#OpenError
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    32  other person.  No title to or ownership of the software is
    34  other person.  No title to or ownership of the software is
    33  hereby transferred.
    35  hereby transferred.
    34 "
    36 "
    35 ! !
    37 ! !
    36 
    38 
       
    39 !OpenError class methodsFor:'initialization'!
       
    40 
       
    41 initialize
       
    42     NotifierString := 'open error'.
       
    43 ! !
       
    44 
    37 !OpenError methodsFor:'accessing'!
    45 !OpenError methodsFor:'accessing'!
    38 
    46 
    39 pathName
    47 pathName
    40     "the name of the file/device which failed to open"
    48     "the name of the file/device which failed to open"
    41 
    49 
    54 ! !
    62 ! !
    55 
    63 
    56 !OpenError class methodsFor:'documentation'!
    64 !OpenError class methodsFor:'documentation'!
    57 
    65 
    58 version
    66 version
    59     ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.13 2013-12-04 11:23:19 stefan Exp $'
    67     ^ '$Header$'
    60 ! !
    68 ! !
    61 
    69 
       
    70 
       
    71 OpenError initialize!