Package org.daisy.dotify.common.io
Class ResourceLocatorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.daisy.dotify.common.io.ResourceLocatorException
-
- All Implemented Interfaces:
Serializable
public class ResourceLocatorException extends IOException
A ResourceLocatorException is an exception that indicates conditions in aResourceLocator
that a reasonable application might want to catch.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResourceLocatorException()
Constructs a new exception with null as its detail message.ResourceLocatorException(String message)
Constructs a new exception with the specified detail message.ResourceLocatorException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.ResourceLocatorException(Throwable cause)
Constructs a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ResourceLocatorException
public ResourceLocatorException()
Constructs a new exception with null as its detail message.
-
ResourceLocatorException
public ResourceLocatorException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
ResourceLocatorException
public ResourceLocatorException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause
-
-