Package org.orekit.errors
Class UnsupportedParameterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.orekit.errors.OrekitException
-
- org.orekit.errors.UnsupportedParameterException
-
- All Implemented Interfaces:
Serializable
,LocalizedException
public class UnsupportedParameterException extends OrekitException
Exception for unsupportedParameterDriver
in a model implementingParameterDriversProvider
.- Since:
- 12.0
- Author:
- Maxime Journot, Luc Maisonobe
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
COMMA_SEP
Comma separator for printing list of supported parameter drivers.static String
NO_PARAMETER
String for empty parameter drivers' list.
-
Constructor Summary
Constructors Constructor Description UnsupportedParameterException(String parameterName, List<ParameterDriver> parameterDrivers)
Constructor.
-
Method Summary
-
Methods inherited from class org.orekit.errors.OrekitException
getLocalizedMessage, getMessage, getMessage, getParts, getSpecifier, unwrap
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
NO_PARAMETER
public static final String NO_PARAMETER
String for empty parameter drivers' list.- See Also:
- Constant Field Values
-
COMMA_SEP
public static final String COMMA_SEP
Comma separator for printing list of supported parameter drivers.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnsupportedParameterException
public UnsupportedParameterException(String parameterName, List<ParameterDriver> parameterDrivers)
Constructor.- Parameters:
parameterName
- name of the parameter driver that is not supported by the modelparameterDrivers
- list of the model's parameter drivers
-
-