Class InsufficientPointsException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.mpp.bean.points.fitter.InsufficientPointsException
- All Implemented Interfaces:
Serializable
public class InsufficientPointsException extends AnchorCheckedException
Exception thrown when there are not enough points to perform a fitting operation.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InsufficientPointsException()Constructs an InsufficientPointsException with a default error message.InsufficientPointsException(String message)Constructs an InsufficientPointsException with a specified error message.InsufficientPointsException(String message, Throwable cause)Constructs an InsufficientPointsException with a specified error message and cause.InsufficientPointsException(Throwable cause)Constructs an InsufficientPointsException with a specified 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
-
InsufficientPointsException
public InsufficientPointsException()Constructs an InsufficientPointsException with a default error message. -
InsufficientPointsException
Constructs an InsufficientPointsException with a specified error message and cause.- Parameters:
message- the detail messagecause- the cause of this exception
-
InsufficientPointsException
Constructs an InsufficientPointsException with a specified error message.- Parameters:
message- the detail message
-
InsufficientPointsException
Constructs an InsufficientPointsException with a specified cause.- Parameters:
cause- the cause of this exception
-