FileDoesNotExistException.st
branchjv
changeset 21024 8734987eb5c7
parent 18028 e39da2aa21bc
parent 20886 64d45ff90ab6
equal deleted inserted replaced
20729:5a09e2a164af 21024:8734987eb5c7
     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 OpenError subclass:#FileDoesNotExistException
    16 OpenError subclass:#FileDoesNotExistException
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    33  hereby transferred.
    35  hereby transferred.
    34 
    36 
    35 "
    37 "
    36 ! !
    38 ! !
    37 
    39 
       
    40 !FileDoesNotExistException methodsFor:'accessing'!
       
    41 
       
    42 description
       
    43     |pathName|
       
    44 
       
    45     (pathName := self pathName) notNil ifTrue:[
       
    46         pathName isFilename ifTrue:[
       
    47             pathName := pathName pathName.
       
    48         ]. 
       
    49         pathName isString ifTrue:[
       
    50             ^ super description,': "',pathName,'"'
       
    51         ].    
       
    52     ].
       
    53     ^ super description
       
    54 ! !
       
    55 
    38 !FileDoesNotExistException class methodsFor:'documentation'!
    56 !FileDoesNotExistException class methodsFor:'documentation'!
    39 
    57 
    40 version
    58 version
    41     ^ '$Header: /cvs/stx/stx/libbasic/FileDoesNotExistException.st,v 1.2 2013-03-06 17:07:42 cg Exp $'
    59     ^ '$Header$'
    42 !
    60 !
    43 
    61 
    44 version_CVS
    62 version_CVS
    45     ^ '$Header: /cvs/stx/stx/libbasic/FileDoesNotExistException.st,v 1.2 2013-03-06 17:07:42 cg Exp $'
    63     ^ '$Header$'
    46 ! !
    64 ! !
    47 
    65