Class MathUnsupportedOperationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.math4.legacy.exception.MathRuntimeException
-
- org.apache.commons.math4.legacy.exception.MathUnsupportedOperationException
-
- All Implemented Interfaces:
Serializable
,ExceptionContextProvider
public class MathUnsupportedOperationException extends MathRuntimeException
Base class for all unsupported features. It is used for all the exceptions that have the semantics of the standardUnsupportedOperationException
, but must also provide a localized message.- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MathUnsupportedOperationException()
Default constructor.MathUnsupportedOperationException(Localizable pattern, Object... args)
-
Method Summary
-
Methods inherited from class org.apache.commons.math4.legacy.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MathUnsupportedOperationException
public MathUnsupportedOperationException()
Default constructor.
-
MathUnsupportedOperationException
public MathUnsupportedOperationException(Localizable pattern, Object... args)
- Parameters:
pattern
- Message pattern providing the specific context of the error.args
- Arguments.
-
-