Class MathIllegalArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.commons.math.exception.MathIllegalArgumentException
- All Implemented Interfaces:
Serializable
,MathThrowable
- Direct Known Subclasses:
MathIllegalNumberException
,NullArgumentException
Base class for all preconditions violation exceptions.
This class is not intended to be instantiated directly: it should serve
as a base class to create all the exceptions that share the semantics of
the standard
IllegalArgumentException
, but must also provide a
localized message.- Since:
- 2.2
- Version:
- $Revision$ $Date$
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
MathIllegalArgumentException
(Localizable general, Object... args) protected
MathIllegalArgumentException
(Localizable specific, Localizable general, Object... args) -
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) Get the message in a specified locale.Gets the localizable pattern used to build the specific part of the message of this throwable.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MathIllegalArgumentException
- Parameters:
specific
- Message pattern providing the specific context of the error.general
- Message pattern explaining the cause of the error.args
- Arguments.
-
MathIllegalArgumentException
- Parameters:
general
- Message pattern explaining the cause of the error.args
- Arguments.
-
-
Method Details
-
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
-
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
-
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
Get the message in a specified locale.- Specified by:
getMessage
in interfaceMathThrowable
- Parameters:
locale
- Locale in which the message should be translated.- Returns:
- the localized message.
-
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
-