Class PolynomialsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.numerical.NumericalException
com.irurueta.numerical.polynomials.PolynomialsException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PolynomialEstimationException
Base exception for polynomials.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.PolynomialsException
(String message) Constructor with String containing message.PolynomialsException
(String message, Throwable cause) Constructor with message and cause.PolynomialsException
(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
-
PolynomialsException
public PolynomialsException()Constructor. -
PolynomialsException
Constructor with String containing message.- Parameters:
message
- message indicating the cause of the exception.
-
PolynomialsException
Constructor with message and cause.- Parameters:
message
- message describing the cause of the exception.cause
- instance containing the cause of the exception.
-
PolynomialsException
Constructor with cause.- Parameters:
cause
- instance containing the cause of the exception.
-