Package org.apfloat
Class NumericComputationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apfloat.ApfloatRuntimeException
-
- org.apfloat.NumericComputationException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
InfiniteExpansionException
,LossOfPrecisionException
,OverflowException
public class NumericComputationException extends ApfloatRuntimeException
Exception indicating that something went wrong in a numeric computation.EU Artificial Intelligence Act note: the name of this class was generated with artificial intelligence.
- Since:
- 1.14.0
- Version:
- 1.14.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description NumericComputationException()
Constructs a new apfloat numeric computation exception with an empty detail message.NumericComputationException(java.lang.String message)
Constructs a new apfloat numeric computation exception with the specified detail message.NumericComputationException(java.lang.String message, java.lang.Throwable cause)
Constructs a new apfloat numeric computation exception with the specified detail message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NumericComputationException
public NumericComputationException()
Constructs a new apfloat numeric computation exception with an empty detail message.
-
NumericComputationException
public NumericComputationException(java.lang.String message)
Constructs a new apfloat numeric computation exception with the specified detail message.- Parameters:
message
- The detail message.
-
NumericComputationException
public NumericComputationException(java.lang.String message, java.lang.Throwable cause)
Constructs a new apfloat numeric computation exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- Originating cause of the exception.
-
-