Class PointsFitterException
Object
Throwable
Exception
AnchorCheckedException
PointsFitterException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during the point fitting process.
This exception extends AnchorCheckedException
and is used specifically for errors
related to the PointsFitter
operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPointsFitterException
(Exception cause) Constructs a new PointsFitterException with the specified cause.PointsFitterException
(String message) Constructs a new PointsFitterException 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
-
PointsFitterException
Constructs a new PointsFitterException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
PointsFitterException
Constructs a new PointsFitterException with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method)
-