Class SolverException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.numbers.rootfinder.SolverException
- All Implemented Interfaces:
Serializable
Package private exception class with constants for frequently used messages.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final String
Error message for "failed bracketing" condition.(package private) static final String
Error message for "out of range" condition.private static final long
Serializable version identifier.(package private) static final String
Error message for "too large" condition. -
Constructor Summary
ConstructorsConstructorDescriptionSolverException
(String message, Object... formatArguments) Create an exception where the message is constructed by applying theformat()
method fromString
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
TOO_LARGE
Error message for "too large" condition.- See Also:
-
OUT_OF_RANGE
Error message for "out of range" condition.- See Also:
-
BRACKETING
Error message for "failed bracketing" condition.- See Also:
-
serialVersionUID
private static final long serialVersionUIDSerializable version identifier.- See Also:
-
-
Constructor Details
-
SolverException
Create an exception where the message is constructed by applying theformat()
method fromString
.- Parameters:
message
- the exception message with replaceable parametersformatArguments
- the arguments for formatting the message- See Also:
-