Class BackendSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.lexmark.saperion.exceptions.EcmException
com.lexmark.saperion.exceptions.system.SystemException
com.lexmark.saperion.exceptions.system.BackendSystemException
- All Implemented Interfaces:
Serializable
public class BackendSystemException
extends com.lexmark.saperion.exceptions.system.SystemException
Generic system exception.
- Author:
- owaeldrich
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Backend exception factory.static class
Backend error definition.Nested classes/interfaces inherited from class com.lexmark.saperion.exceptions.system.SystemException
com.lexmark.saperion.exceptions.system.SystemException.SystemError
-
Field Summary
FieldsFields inherited from class com.lexmark.saperion.exceptions.system.SystemException
SYSTEM_GENERAL_ERROR
-
Constructor Summary
ConstructorsModifierConstructorDescriptionConvenience constructor.BackendSystemException
(com.lexmark.saperion.exceptions.ErrorType fault, Throwable cause) Factory constructor.protected
Creates a new exception with the given error code.protected
BackendSystemException
(BackendSystemException.BackendSystemError errorCode, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails, String message, Throwable cause) Creates a new exception with the given error code, error details, exception cause and exception message.protected
BackendSystemException
(BackendSystemException.BackendSystemError errorCode, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails, Map<String, String> parameters, String message, Throwable cause) Creates a new exception with the given error code, error details, error parameters, exception cause and exception message.protected
BackendSystemException
(BackendSystemException.BackendSystemError errorCode, String message) Creates a new exception with the given error code and exception message.protected
BackendSystemException
(BackendSystemException.BackendSystemError errorCode, Throwable cause) Creates a new exception with the given error code and exception cause.BackendSystemException
(String message) Creates a new exception with the given exception message.BackendSystemException
(String message, Throwable cause) BackendSystemException
(String message, Throwable cause, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails) Creates a new exception with the given error details, exception cause and exception message.BackendSystemException
(Throwable cause) Creates a new exception with the given exception cause. -
Method Summary
Methods inherited from class com.lexmark.saperion.exceptions.EcmException
createError, getDescriptionParameters, getErrorCode, getErrorDetails
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
FACTORY
-
-
Constructor Details
-
BackendSystemException
public BackendSystemException()Convenience constructor. -
BackendSystemException
-
BackendSystemException
Factory constructor. Creates a new exception based on the given server fault.- Parameters:
fault
- the server faultcause
- the exception cause
-
BackendSystemException
Creates a new exception with the given exception message.- Parameters:
message
- the exception message
-
BackendSystemException
public BackendSystemException(String message, Throwable cause, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails) Creates a new exception with the given error details, exception cause and exception message.- Parameters:
errorDetails
- the error detailsmessage
- the exception messagecause
- the exception cause
-
BackendSystemException
Creates a new exception with the given exception cause.- Parameters:
cause
- the exception cause
-
BackendSystemException
Creates a new exception with the given error code.- Parameters:
errorCode
- the error code
-
BackendSystemException
protected BackendSystemException(BackendSystemException.BackendSystemError errorCode, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails, Map<String, String> parameters, String message, Throwable cause) Creates a new exception with the given error code, error details, error parameters, exception cause and exception message.- Parameters:
errorCode
- the error codeerrorDetails
- the error detailsparameters
- the error parametersmessage
- the exception messagecause
- the exception cause
-
BackendSystemException
protected BackendSystemException(BackendSystemException.BackendSystemError errorCode, com.lexmark.saperion.exceptions.ErrorDetailsType errorDetails, String message, Throwable cause) Creates a new exception with the given error code, error details, exception cause and exception message.- Parameters:
errorCode
- the error codeerrorDetails
- the error detailsmessage
- the exception messagecause
- the exception cause
-
BackendSystemException
protected BackendSystemException(BackendSystemException.BackendSystemError errorCode, String message) Creates a new exception with the given error code and exception message.- Parameters:
errorCode
- the error codemessage
- the exception message
-
BackendSystemException
protected BackendSystemException(BackendSystemException.BackendSystemError errorCode, Throwable cause) Creates a new exception with the given error code and exception cause.- Parameters:
errorCode
- the error codecause
- the exception cause
-