Package htsjdk.beta.exception
Class HtsjdkException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
htsjdk.beta.exception.HtsjdkException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
HtsjdkIOException
,HtsjdkPluginException
Exception type for all exceptions caused at runtime by HTSJDK.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionHtsjdkException
(String message) Constructs an HtsjdkException.HtsjdkException
(String message, Throwable cause) Construct an HtsjdkException with a specified cause.HtsjdkException
(Throwable cause) Construct an HtsjdkException with a message constructed from the cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HtsjdkException
Constructs an HtsjdkException.- Parameters:
message
- detailed message.
-
HtsjdkException
Construct an HtsjdkException with a specified cause.- Parameters:
message
- detailed message.cause
- cause of the exception.
-
HtsjdkException
Construct an HtsjdkException with a message constructed from the cause.- Parameters:
cause
- cause of the exception.
-