java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.io.IOException | +--com.dalsemi.onewire.application.file.OWFileNotFoundException
Signals that an attempt to open the file on a 1-Wire device denoted.
This exception will be thrown by the OWFileInputStream
and
OWFileOutputStream
constructors when a file with the specified
pathname does not exist on the 1-Wire memory device.
Constructor Summary | |
OWFileNotFoundException()
Constructs a FileNotFoundException with
null as its error detail message. |
|
OWFileNotFoundException(String s)
Constructs a FileNotFoundException with the
specified detail message. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public OWFileNotFoundException()
FileNotFoundException
with
null
as its error detail message.public OWFileNotFoundException(String s)
FileNotFoundException
with the
specified detail message.s
- the detail message.