Class OWFileNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.dalsemi.onewire.application.file.OWFileNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class OWFileNotFoundException extends java.io.IOException
Signals that an attempt to open the file on a 1-Wire device denoted.
This exception will be thrown by the
OWFileInputStream
andOWFileOutputStream
constructors when a file with the specified pathname does not exist on the 1-Wire memory device.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OWFileNotFoundException()
Constructs aFileNotFoundException
withnull
as its error detail message.OWFileNotFoundException(java.lang.String s)
Constructs aFileNotFoundException
with the specified detail message.
-
-
-
Constructor Detail
-
OWFileNotFoundException
public OWFileNotFoundException()
Constructs aFileNotFoundException
withnull
as its error detail message.
-
OWFileNotFoundException
public OWFileNotFoundException(java.lang.String s)
Constructs aFileNotFoundException
with the specified detail message.- Parameters:
s
- the detail message.
-
-