OpenError.st
author Stefan Vogel <sv@exept.de>
Thu, 12 Aug 2004 17:48:55 +0200
changeset 8472 5e8d452b5d75
parent 8282 b209958b06aa
child 8509 b62464d549f5
permissions -rw-r--r--
Mark methods as private

"{ Package: 'stx:libbasic' }"

StreamError subclass:#OpenError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!


!OpenError methodsFor:'accessing'!

pathName
    "the name of the file/device which failed to open"

    ^ parameter pathName
!

stream
    "the stream which failed to open"

    ^ parameter
! !

!OpenError methodsFor:'testing'!

isOpenError
    ^ true
! !

!OpenError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.2 2004-04-01 12:29:55 cg Exp $'
! !