Class MathIllegalStateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- org.apache.commons.math3.exception.MathIllegalStateException
-
- All Implemented Interfaces:
java.io.Serializable
,ExceptionContextProvider
- Direct Known Subclasses:
CardanEulerSingularityException
,ConvergenceException
,MathInternalError
,MathParseException
,MaxCountExceededException
,NoFeasibleSolutionException
,NoFeasibleSolutionException
,UnboundedSolutionException
,UnboundedSolutionException
public class MathIllegalStateException extends java.lang.IllegalStateException implements ExceptionContextProvider
Base class for all exceptions that signal that the process throwing the exception is in a state that does not comply with the set of states that it is designed to be in.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathIllegalStateException()
Default constructor.MathIllegalStateException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... args)
Simple constructor.MathIllegalStateException(Localizable pattern, java.lang.Object... args)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExceptionContext
getContext()
Gets a reference to the "rich context" data structure that allows to customize error messages and store key, value pairs in exceptions.java.lang.String
getLocalizedMessage()
java.lang.String
getMessage()
-
-
-
Constructor Detail
-
MathIllegalStateException
public MathIllegalStateException(Localizable pattern, java.lang.Object... args)
Simple constructor.- Parameters:
pattern
- Message pattern explaining the cause of the error.args
- Arguments.
-
MathIllegalStateException
public MathIllegalStateException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... args)
Simple constructor.- Parameters:
cause
- Root cause.pattern
- Message pattern explaining the cause of the error.args
- Arguments.
-
MathIllegalStateException
public MathIllegalStateException()
Default constructor.
-
-
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:
getContext
in interfaceExceptionContextProvider
- Returns:
- a reference to the exception context.
-
getMessage
public java.lang.String getMessage()
- Overrides:
getMessage
in classjava.lang.Throwable
-
getLocalizedMessage
public java.lang.String getLocalizedMessage()
- Overrides:
getLocalizedMessage
in classjava.lang.Throwable
-
-