Package io.mosip.mimoto.exception
Enum PlatformErrorMessages
- java.lang.Object
-
- java.lang.Enum<PlatformErrorMessages>
-
- io.mosip.mimoto.exception.PlatformErrorMessages
-
- All Implemented Interfaces:
Serializable,Comparable<PlatformErrorMessages>
public enum PlatformErrorMessages extends Enum<PlatformErrorMessages>
The Enum PlatformErrorMessages.- Author:
- M1047487
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()Gets the error code.StringgetMessage()Gets the error message.static PlatformErrorMessagesvalueOf(String name)Returns the enum constant of this type with the specified name.static PlatformErrorMessages[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIMOTO_APPLICANT_PHOTO_NOT_SET
public static final PlatformErrorMessages MIMOTO_APPLICANT_PHOTO_NOT_SET
The applicant photo not set.
-
MIMOTO_QRCODE_NOT_SET
public static final PlatformErrorMessages MIMOTO_QRCODE_NOT_SET
The qrcode not set.
-
MIMOTO_VC_DECRYPTION_FAILED
public static final PlatformErrorMessages MIMOTO_VC_DECRYPTION_FAILED
VC decryption failed.
-
MIMOTO_DOCUMENT_GENERATION_FAILED
public static final PlatformErrorMessages MIMOTO_DOCUMENT_GENERATION_FAILED
The document generation failed.
-
MIMOTO_PDF_GENERATION_FAILED
public static final PlatformErrorMessages MIMOTO_PDF_GENERATION_FAILED
The pdf generation failed.
-
MIMOTO_QRCODE_NOT_GENERATED
public static final PlatformErrorMessages MIMOTO_QRCODE_NOT_GENERATED
The qrcode not generated.
-
MIMOTO_QR_CODE_GENERATION_ERROR
public static final PlatformErrorMessages MIMOTO_QR_CODE_GENERATION_ERROR
The qr code generation error.
-
MIMOTO_VID_CREATION_ERROR
public static final PlatformErrorMessages MIMOTO_VID_CREATION_ERROR
The vid creation error.
-
MIMOTO_VID_EXCEPTION
public static final PlatformErrorMessages MIMOTO_VID_EXCEPTION
The vid exception.
-
MIMOTO_PDF_NOT_GENERATED
public static final PlatformErrorMessages MIMOTO_PDF_NOT_GENERATED
-
MIMOTO_RGS_JSON_PARSING_EXCEPTION
public static final PlatformErrorMessages MIMOTO_RGS_JSON_PARSING_EXCEPTION
The rgs json parsing exception.
-
MIMOTO_PGS_INVALID_INPUT_PARAMETER
public static final PlatformErrorMessages MIMOTO_PGS_INVALID_INPUT_PARAMETER
The invalid input parameter.
-
MIMOTO_RGS_JSON_MAPPING_EXCEPTION
public static final PlatformErrorMessages MIMOTO_RGS_JSON_MAPPING_EXCEPTION
The rgs json mapping exception.
-
MIMOTO_PDF_SIGNATURE_EXCEPTION
public static final PlatformErrorMessages MIMOTO_PDF_SIGNATURE_EXCEPTION
-
MIMOTO_PVM_INVALID_UIN
public static final PlatformErrorMessages MIMOTO_PVM_INVALID_UIN
The pvm invalid uin.
-
MIMOTO_RCT_UNKNOWN_RESOURCE_EXCEPTION
public static final PlatformErrorMessages MIMOTO_RCT_UNKNOWN_RESOURCE_EXCEPTION
The rct unknown resource exception.
-
MIMOTO_UTL_DIGITAL_SIGN_EXCEPTION
public static final PlatformErrorMessages MIMOTO_UTL_DIGITAL_SIGN_EXCEPTION
The utl digital sign exception.
-
MIMOTO_UTL_BIOMETRIC_TAG_MATCH
public static final PlatformErrorMessages MIMOTO_UTL_BIOMETRIC_TAG_MATCH
The utl biometric tag match.
-
MIMOTO_UIN_NOT_FOUND_IN_DATABASE
public static final PlatformErrorMessages MIMOTO_UIN_NOT_FOUND_IN_DATABASE
The uin not found in database.
-
MIMOTO_BDD_ABIS_ABORT
public static final PlatformErrorMessages MIMOTO_BDD_ABIS_ABORT
The bdd abis abort.
-
MIMOTO_TEM_PROCESSING_FAILURE
public static final PlatformErrorMessages MIMOTO_TEM_PROCESSING_FAILURE
The tem processing failure.
-
MIMOTO_SYS_JSON_PARSING_EXCEPTION
public static final PlatformErrorMessages MIMOTO_SYS_JSON_PARSING_EXCEPTION
-
MIMOTO_AUT_INVALID_TOKEN
public static final PlatformErrorMessages MIMOTO_AUT_INVALID_TOKEN
-
MIMOTO_CMB_UNSUPPORTED_ENCODING
public static final PlatformErrorMessages MIMOTO_CMB_UNSUPPORTED_ENCODING
The cmb unsupported encoding.
-
MIMOTO_SYS_NO_SUCH_FIELD_EXCEPTION
public static final PlatformErrorMessages MIMOTO_SYS_NO_SUCH_FIELD_EXCEPTION
The sys no such field exception.
-
MIMOTO_SYS_INSTANTIATION_EXCEPTION
public static final PlatformErrorMessages MIMOTO_SYS_INSTANTIATION_EXCEPTION
The sys instantiation exception.
-
MIMOTO_PIS_IDENTITY_NOT_FOUND
public static final PlatformErrorMessages MIMOTO_PIS_IDENTITY_NOT_FOUND
-
MIMOTO_AUT_ACCESS_DENIED
public static final PlatformErrorMessages MIMOTO_AUT_ACCESS_DENIED
Access denied for the token present.
-
DATASHARE_EXCEPTION
public static final PlatformErrorMessages DATASHARE_EXCEPTION
-
API_NOT_ACCESSIBLE_EXCEPTION
public static final PlatformErrorMessages API_NOT_ACCESSIBLE_EXCEPTION
-
CERTIFICATE_THUMBPRINT_ERROR
public static final PlatformErrorMessages CERTIFICATE_THUMBPRINT_ERROR
-
MIMOTO_INVALID_KEY_EXCEPTION
public static final PlatformErrorMessages MIMOTO_INVALID_KEY_EXCEPTION
-
MIMOTO_PDF_SIGN_EXCEPTION
public static final PlatformErrorMessages MIMOTO_PDF_SIGN_EXCEPTION
-
-
Method Detail
-
values
public static PlatformErrorMessages[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlatformErrorMessages c : PlatformErrorMessages.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlatformErrorMessages valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getMessage
public String getMessage()
Gets the error message.- Returns:
- the error message
-
getCode
public String getCode()
Gets the error code.- Returns:
- the error code
-
-