Class InsufficientPointsException
Object
Throwable
Exception
AnchorCheckedException
InsufficientPointsException
- All Implemented Interfaces:
Serializable
Exception thrown when there are not enough points to perform a fitting operation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs 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.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
-