Package org.orekit.errors
Class OrekitIllegalArgumentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.orekit.errors.OrekitIllegalArgumentException
-
- All Implemented Interfaces:
Serializable,LocalizedException
public class OrekitIllegalArgumentException extends IllegalArgumentException implements LocalizedException
Extension ofIllegalArgumentExceptionwith localized message.- Since:
- 7.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OrekitIllegalArgumentException(org.hipparchus.exception.Localizable specifier, Object... parts)Create an exception with localized message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLocalizedMessage()StringgetMessage()StringgetMessage(Locale locale)Gets the message in a specified locale.Object[]getParts()Get the variable parts of the error message.org.hipparchus.exception.LocalizablegetSpecifier()Get the localizable specifier of the error message.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
OrekitIllegalArgumentException
public OrekitIllegalArgumentException(org.hipparchus.exception.Localizable specifier, Object... parts)Create an exception with localized message.- Parameters:
specifier- format specifier (to be translated)parts- parts to insert in the format (no translation)
-
-
Method Detail
-
getMessage
public String getMessage(Locale locale)
Gets the message in a specified locale.- Specified by:
getMessagein interfaceLocalizedException- Parameters:
locale- Locale in which the message should be translated- Returns:
- localized message
-
getMessage
public String getMessage()
- Overrides:
getMessagein classThrowable
-
getLocalizedMessage
public String getLocalizedMessage()
- Overrides:
getLocalizedMessagein classThrowable
-
getSpecifier
public org.hipparchus.exception.Localizable getSpecifier()
Get the localizable specifier of the error message.- Specified by:
getSpecifierin interfaceLocalizedException- Returns:
- localizable specifier of the error message
-
getParts
public Object[] getParts()
Get the variable parts of the error message.- Specified by:
getPartsin interfaceLocalizedException- Returns:
- a copy of the variable parts of the error message
-
-