-
- All Implemented Interfaces:
-
android.os.Parcelable
public class GiniCaptureError implements Parcelable
Provides details about the error which caused the Gini Capture SDK to fail.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumGiniCaptureError.ErrorCodeDefinition of Gini Capture SDK error codes.
-
Field Summary
Fields Modifier and Type Field Description public final static Parcelable.Creator<GiniCaptureError>CREATOR
-
Constructor Summary
Constructors Constructor Description GiniCaptureError(GiniCaptureError.ErrorCode code, String message)Internal use only.
-
Method Summary
Modifier and Type Method Description GiniCaptureError.ErrorCodegetErrorCode()Use the ErrorCode to find the cause of the error. StringgetMessage()Use the error message to find out the details about the error. intdescribeContents()Internal use only. voidwriteToParcel(Parcel dest, int flags)Internal use only. -
-
Constructor Detail
-
GiniCaptureError
GiniCaptureError(GiniCaptureError.ErrorCode code, String message)
Internal use only.
-
-
Method Detail
-
getErrorCode
GiniCaptureError.ErrorCode getErrorCode()
Use the ErrorCode to find the cause of the error.
-
getMessage
String getMessage()
Use the error message to find out the details about the error.
Note: you should not show this message to the user. It is for logging and debugging purposes only.
-
describeContents
int describeContents()
Internal use only.
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
Internal use only.
-
-
-
-