OpenError.st
author Claus Gittinger <cg@exept.de>
Thu, 04 Mar 2004 17:38:34 +0100
changeset 8064 081bff3d87a4
child 8282 b209958b06aa
permissions -rw-r--r--
initial checkin

"{ Encoding: utf8 }"

"{ 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
! !

!OpenError methodsFor:'testing'!

isOpenError
    ^ true
! !

!OpenError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/OpenError.st,v 1.1 2004-03-04 16:38:34 cg Exp $'
! !