OpenError.st
author Stefan Vogel <sv@exept.de>
Wed, 01 Sep 2004 18:33:02 +0200
changeset 8509 b62464d549f5
parent 8282 b209958b06aa
child 8514 9e18649ad0c9
permissions -rw-r--r--
Do not implement #isStreamError and #isOpenError.

"{ 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 class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.3 2004-09-01 16:32:53 stefan Exp $'
! !