Class IncludeMarksFailureException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.mpp.feature.addcriteria.IncludeMarksFailureException
- All Implemented Interfaces:
Serializable
public class IncludeMarksFailureException extends AnchorCheckedException
Exception thrown when there's a failure in including marks during the add criteria process.
This exception extends AnchorCheckedException and is used specifically in the context
of mark inclusion operations.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description IncludeMarksFailureException(Exception cause)Constructs a new exception with the specified cause.IncludeMarksFailureException(String message)Constructs a new exception 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
-
IncludeMarksFailureException
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
IncludeMarksFailureException
Constructs a new exception with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method)
-