Package org.anchoranalysis.io.input.path
Class DerivePathException
Object
Throwable
Exception
AnchorCheckedException
AnchorFriendlyCheckedException
DerivePathException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
When an error occurs deriving a path from another path.
- Author:
- Owen Feehan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDerivePathException
(String message) Create with a message only.DerivePathException
(String message, Throwable cause) Create with a message and cause.DerivePathException
(Throwable cause) Create with a cause only. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyCheckedException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy, stackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DerivePathException
Create with a message only.- Parameters:
message
- the exception message.
-
DerivePathException
Create with a cause only.- Parameters:
cause
- the cause.
-
DerivePathException
Create with a message and cause.- Parameters:
message
- the exception message.cause
- the cause.
-