Package com.gemalto.mfs.mwsdk.exception
Class InternalComponentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.gemalto.mfs.mwsdk.exception.InternalComponentException
-
- All Implemented Interfaces:
java.io.Serializable
public class InternalComponentException extends java.lang.Exception
An Exception class to handle Error occurred in internal Component or during the migration of the SDK Version.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
ERROR_CODE_SERIAL_NUMBER_MIGRATION_FAILURE
static java.lang.String
INVALID_PREVIOUS_VERSION
-
Constructor Summary
Constructors Constructor Description InternalComponentException()
InternalComponentException(int errorCode, java.lang.String message)
InternalComponentException(int errorCode, java.lang.String message, java.lang.Throwable exception)
InternalComponentException(java.lang.String message)
InternalComponentException(java.lang.String message, java.lang.Throwable exception)
Constructor given the message and the cause of the exeption
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getmErrorCode()
-
-
-
Field Detail
-
ERROR_CODE_SERIAL_NUMBER_MIGRATION_FAILURE
public static final int ERROR_CODE_SERIAL_NUMBER_MIGRATION_FAILURE
- See Also:
- Constant Field Values
-
INVALID_PREVIOUS_VERSION
public static final java.lang.String INVALID_PREVIOUS_VERSION
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InternalComponentException
public InternalComponentException()
-
InternalComponentException
public InternalComponentException(java.lang.String message)
-
InternalComponentException
public InternalComponentException(java.lang.String message, java.lang.Throwable exception)
Constructor given the message and the cause of the exeption- Parameters:
message
- Exception messageexception
- Cause of the exception
-
InternalComponentException
public InternalComponentException(int errorCode, java.lang.String message)
- Parameters:
errorCode
- Error code of the Exception occurredmessage
- Error message of the Exception
-
InternalComponentException
public InternalComponentException(int errorCode, java.lang.String message, java.lang.Throwable exception)
- Parameters:
errorCode
- Error code of the Exception occurredmessage
- Error message of the Exceptionexception
- Cause of the Exception
-
-