Package com.zebra.sdk.settings
Class SettingsException
- All Implemented Interfaces:
Serializable
Signals that an error occurred retrieving a setting
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aSettingsExceptionwithSetting not foundas the detailed error message.SettingsException(String message) Constructs aSettingsExceptionwithmessageas the detailed error message.SettingsException(String message, Throwable cause) Constructs aSettingsExceptionwith themessageas the detailed error message andcauseas the source of the exception.SettingsException(Throwable cause) Constructs aSettingsExceptionwithcauseas the source of the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SettingsException
public SettingsException()Constructs aSettingsExceptionwithSetting not foundas the detailed error message. -
SettingsException
Constructs aSettingsExceptionwithmessageas the detailed error message.- Parameters:
message- the error message.
-
SettingsException
Constructs aSettingsExceptionwithcauseas the source of the exception.- Parameters:
cause- the cause of the exception
-
SettingsException
Constructs aSettingsExceptionwith themessageas the detailed error message andcauseas the source of the exception.- Parameters:
message- the error message.cause- the cause of the exception
-