Package org.apache.commons.math
Class MathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.math.MathException
- All Implemented Interfaces:
Serializable
,MathThrowable
- Direct Known Subclasses:
CardanEulerSingularityException
,ConvergenceException
,DerivativeException
,DimensionMismatchException
,DuplicateSampleAbscissaException
,EstimationException
,EventException
,FunctionEvaluationException
,IntegratorException
,MathConfigurationException
,NotARotationMatrixException
,NotPositiveDefiniteMatrixException
,NotSymmetricMatrixException
Base class for commons-math checked exceptions.
Supports nesting, emulating JDK 1.4 behavior if necessary.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newMathException
with no detail message.MathException
(String pattern, Object... arguments) Deprecated.MathException
(Throwable rootCause) Constructs a newMathException
with specified nestedThrowable
root cause.MathException
(Throwable rootCause, String pattern, Object... arguments) Deprecated.as of 2.2 replaced byMathException(Throwable, Localizable, Object...)
MathException
(Throwable rootCause, Localizable pattern, Object... arguments) Constructs a newMathException
with specified formatted detail message and nestedThrowable
root cause.MathException
(Localizable pattern, Object... arguments) Constructs a newMathException
with specified formatted detail message. -
Method Summary
Modifier and TypeMethodDescriptionObject[]
Gets the arguments used to build the message of this throwable.Gets the localizable pattern used to build the general part of the message of this throwable.Gets the message in the system default locale.Gets the message in a conventional US locale.getMessage
(Locale locale) Gets the message in a specified locale.Deprecated.as of 2.2 replaced bygetSpecificPattern()
andgetGeneralPattern()
Gets the localizable pattern used to build the specific part of the message of this throwable.void
Prints the stack trace of this exception to the standard error stream.void
Prints the stack trace of this exception to the specified stream.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MathException
public MathException()Constructs a newMathException
with no detail message. -
MathException
Deprecated.as of 2.2 replaced byMathException(Localizable, Object...)
Constructs a newMathException
with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
pattern
- format specifierarguments
- format arguments
-
MathException
Constructs a newMathException
with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
pattern
- format specifierarguments
- format arguments- Since:
- 2.2
-
MathException
Constructs a newMathException
with specified nestedThrowable
root cause.- Parameters:
rootCause
- the exception or error that caused this exception to be thrown.
-
MathException
Deprecated.as of 2.2 replaced byMathException(Throwable, Localizable, Object...)
Constructs a newMathException
with specified formatted detail message and nestedThrowable
root cause. Message formatting is delegated toMessageFormat
.- Parameters:
rootCause
- the exception or error that caused this exception to be thrown.pattern
- format specifierarguments
- format arguments- Since:
- 1.2
-
MathException
Constructs a newMathException
with specified formatted detail message and nestedThrowable
root cause. Message formatting is delegated toMessageFormat
.- Parameters:
rootCause
- the exception or error that caused this exception to be thrown.pattern
- format specifierarguments
- format arguments- Since:
- 2.2
-
-
Method Details
-
getPattern
Deprecated.as of 2.2 replaced bygetSpecificPattern()
andgetGeneralPattern()
Gets the pattern used to build the message of this throwable.- Returns:
- the pattern used to build the message of this throwable
- Since:
- 1.2
-
getSpecificPattern
Gets the localizable pattern used to build the specific part of the message of this throwable.- Specified by:
getSpecificPattern
in interfaceMathThrowable
- Returns:
- localizable pattern used to build the specific part of the message of this throwable
- Since:
- 2.2
-
getGeneralPattern
Gets the localizable pattern used to build the general part of the message of this throwable.- Specified by:
getGeneralPattern
in interfaceMathThrowable
- Returns:
- localizable pattern used to build the general part of the message of this throwable
- Since:
- 2.2
-
getArguments
Gets the arguments used to build the message of this throwable.- Specified by:
getArguments
in interfaceMathThrowable
- Returns:
- the arguments used to build the message of this throwable
-
getMessage
Gets the message in a specified locale.- Specified by:
getMessage
in interfaceMathThrowable
- Parameters:
locale
- Locale in which the message should be translated- Returns:
- localized message
- Since:
- 1.2
-
getMessage
Gets the message in a conventional US locale.- Specified by:
getMessage
in interfaceMathThrowable
- Overrides:
getMessage
in classThrowable
- Returns:
- localized message
-
getLocalizedMessage
Gets the message in the system default locale.- Specified by:
getLocalizedMessage
in interfaceMathThrowable
- Overrides:
getLocalizedMessage
in classThrowable
- Returns:
- localized message
-
printStackTrace
public void printStackTrace()Prints the stack trace of this exception to the standard error stream.- Overrides:
printStackTrace
in classThrowable
-
printStackTrace
Prints the stack trace of this exception to the specified stream.- Overrides:
printStackTrace
in classThrowable
- Parameters:
out
- thePrintStream
to use for output
-
MathException(Localizable, Object...)