Package org.anchoranalysis.io.input
Class InputReadFailedException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.io.input.InputReadFailedException
- All Implemented Interfaces:
Serializable
public class InputReadFailedException extends AnchorCheckedException
When an error occurs reading an input.
- Author:
- Owen Feehan
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InputReadFailedException(String message)Create with a message only.InputReadFailedException(String message, Throwable cause)Create with a message and cause.InputReadFailedException(Throwable cause)Create with a cause only. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InputReadFailedException
Create with a message only.- Parameters:
message- the exception message.
-
InputReadFailedException
Create with a cause only.- Parameters:
cause- the cause.
-
InputReadFailedException
Create with a message and cause.- Parameters:
message- the exception message.cause- the cause.
-