Package com.irurueta.numerical.fitting
Class FittingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.numerical.NumericalException
com.irurueta.numerical.fitting.FittingException
- All Implemented Interfaces:
Serializable
Raised when a fitter fails to fit a function to provided data.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorFittingException
(String message) Constructor with String containing messageFittingException
(String message, Throwable cause) Constructor with message and causeFittingException
(Throwable cause) Constructor with 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
-
FittingException
public FittingException()Constructor -
FittingException
Constructor with String containing message- Parameters:
message
- message indicating the cause of the exception
-
FittingException
Constructor with message and cause- Parameters:
message
- message describing the cause of the exceptioncause
- instance containing the cause of the exception
-
FittingException
Constructor with cause- Parameters:
cause
- instance containing the cause of the exception
-