Class PointsFitterException
Object
Throwable
Exception
org.anchoranalysis.core.exception.AnchorCheckedException
org.anchoranalysis.mpp.bean.points.fitter.PointsFitterException
- All Implemented Interfaces:
Serializable
public class PointsFitterException extends AnchorCheckedException
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:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description PointsFitterException(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)
-