Package org.anchoranalysis.mpp.mark
Class UnsupportedMarkTypeException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.mpp.mark.UnsupportedMarkTypeException
- All Implemented Interfaces:
Serializable
public class UnsupportedMarkTypeException extends AnchorCheckedException
Exception thrown when an unsupported mark type is encountered.
This exception is used to indicate that a particular type of mark is not supported in the current context or operation.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description UnsupportedMarkTypeException(Exception cause)Constructs a new UnsupportedMarkTypeException with the specified cause.UnsupportedMarkTypeException(String message)Constructs a new UnsupportedMarkTypeException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedMarkTypeException
Constructs a new UnsupportedMarkTypeException with the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
UnsupportedMarkTypeException
Constructs a new UnsupportedMarkTypeException with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method)
-