Package com.irurueta.numerical.roots
Class RootEstimationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.numerical.NumericalException
com.irurueta.numerical.roots.RootEstimationException
- All Implemented Interfaces:
Serializable
Raised when a root estimator cannot determine a root of a polynomial, usually
because of lack of convergence
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.RootEstimationException
(String message) Constructor with String containing message.RootEstimationException
(String message, Throwable cause) Constructor with message and cause.RootEstimationException
(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
-
RootEstimationException
public RootEstimationException()Constructor. -
RootEstimationException
Constructor with String containing message.- Parameters:
message
- Message indicating the cause of the exception.
-
RootEstimationException
Constructor with message and cause.- Parameters:
message
- Message describing the cause of the exception.cause
- Instance containing the cause of the exception.
-
RootEstimationException
Constructor with cause.- Parameters:
cause
- Instance containing the cause of the exception.
-