Package org.biojavax
Class CrossReferenceResolutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.biojavax.CrossReferenceResolutionException
- All Implemented Interfaces:
Serializable
An exception that indicates that an attempt to resolve a
CrossRef
has failed.- Since:
- 1.5
- Author:
- Mark Schreiber
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of CrossReferenceResolutionExceptionCrossReferenceResolutionException
(String message) Creates a new instance of CrossReferenceResolutionException with a message.CrossReferenceResolutionException
(String message, Throwable cause) Creates a new instance of CrossReferenceResolutionException with a message and a cause.Creates a new instance of CrossReferenceResolutionException with a 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
-
CrossReferenceResolutionException
public CrossReferenceResolutionException()Creates a new instance of CrossReferenceResolutionException -
CrossReferenceResolutionException
Creates a new instance of CrossReferenceResolutionException with a message.- Parameters:
message
- a description or reason for the exception.
-
CrossReferenceResolutionException
Creates a new instance of CrossReferenceResolutionException with a message and a cause.- Parameters:
message
- a description or reason for the exception.cause
- the exception that caused this one.
-
CrossReferenceResolutionException
Creates a new instance of CrossReferenceResolutionException with a cause.- Parameters:
cause
- the exception that caused this one.
-