Class MathRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.math4.exception.MathRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable,ExceptionContextProvider
- Direct Known Subclasses:
MathArithmeticException,MathIllegalArgumentException,MathIllegalStateException,MathUnsupportedOperationException
public class MathRuntimeException extends java.lang.RuntimeException implements ExceptionContextProvider
As of release 4.0, all exceptions thrown by the Commons Math code (exceptNullArgumentException) inherit from this class. In most cases, this class should not be instantiated directly: it should serve as a base class for implementing exception classes that describe a specific "problem".- Since:
- 3.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathRuntimeException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... args)MathRuntimeException(Localizable pattern, java.lang.Object... args)
-
Method Summary
Modifier and Type Method Description ExceptionContextgetContext()Gets a reference to the "rich context" data structure that allows to customize error messages and store key, value pairs in exceptions.java.lang.StringgetLocalizedMessage()java.lang.StringgetMessage()
-
-
-
Constructor Detail
-
MathRuntimeException
public MathRuntimeException(Localizable pattern, java.lang.Object... args)
- Parameters:
pattern- Message pattern explaining the cause of the error.args- Arguments.
-
MathRuntimeException
public MathRuntimeException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... args)- Parameters:
cause- Root cause.pattern- Message pattern explaining the cause of the error.args- Arguments.- Since:
- 4.0
-
-
Method Detail
-
getContext
public ExceptionContext getContext()
Gets a reference to the "rich context" data structure that allows to customize error messages and store key, value pairs in exceptions.- Specified by:
getContextin interfaceExceptionContextProvider- Returns:
- a reference to the exception context.
-
getMessage
public java.lang.String getMessage()
- Overrides:
getMessagein classjava.lang.Throwable
-
getLocalizedMessage
public java.lang.String getLocalizedMessage()
- Overrides:
getLocalizedMessagein classjava.lang.Throwable
-
-