Class MathUnsupportedOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.math4.exception.MathRuntimeException
org.apache.commons.math4.exception.MathUnsupportedOperationException
- All Implemented Interfaces:
java.io.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 standard
UnsupportedOperationException, 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, java.lang.Object... args) -
Method Summary
Methods inherited from class org.apache.commons.math4.exception.MathRuntimeException
getContext, getLocalizedMessage, getMessage
-
Constructor Details
-
MathUnsupportedOperationException
public MathUnsupportedOperationException()Default constructor. -
MathUnsupportedOperationException
- Parameters:
pattern- Message pattern providing the specific context of the error.args- Arguments.
-