Package com.vasco.image.exception
Class ImageGeneratorSDKErrorCodes
- java.lang.Object
-
- com.vasco.image.exception.ImageGeneratorSDKErrorCodes
-
public final class ImageGeneratorSDKErrorCodes extends java.lang.Object
Defines the error codes returned by the Image Generator SDK.
-
-
Field Summary
Fields Modifier and Type Field Description static int
CRONTOSIGN_GENERATION_ERROR
An error occurred during the CrontoSign generation, the return code value is -5001.static int
CRONTOSIGN_SQUARE_SIZE_INVALID_VALUE
The square size is invalid, the return code value is -5003.static int
INPUT_VALUE_EMPTY
The input value is empty, the return code value is -5004.static int
INPUT_VALUE_NOT_EVEN
The input value has not an even length, the return code value is -5007.static int
INPUT_VALUE_NOT_HEXA
The input value is not a hexadecimal value, the return code value is -5006.static int
INPUT_VALUE_TOO_LONG
The input value is too long, the return code value is -5005.static int
INTERNAL_ERROR
An internal error occurred, the return code value is -5000.static int
QRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUE
The error correction level is invalid, the return code value is -5008.static int
QRCODE_IMAGE_SIZE_INVALID_VALUE
The image size is invalid, the return code value is -5002.
-
-
-
Field Detail
-
INTERNAL_ERROR
public static final int INTERNAL_ERROR
An internal error occurred, the return code value is -5000.- See Also:
- Constant Field Values
-
CRONTOSIGN_GENERATION_ERROR
public static final int CRONTOSIGN_GENERATION_ERROR
An error occurred during the CrontoSign generation, the return code value is -5001.- See Also:
- Constant Field Values
-
QRCODE_IMAGE_SIZE_INVALID_VALUE
public static final int QRCODE_IMAGE_SIZE_INVALID_VALUE
The image size is invalid, the return code value is -5002. The image size must be betweenImageGeneratorSDKConstants.CRONTOSIGN_MIN_SQUARE_SIZE
andImageGeneratorSDKConstants.CRONTOSIGN_MAX_SQUARE_SIZE
pixels.- See Also:
- Constant Field Values
-
CRONTOSIGN_SQUARE_SIZE_INVALID_VALUE
public static final int CRONTOSIGN_SQUARE_SIZE_INVALID_VALUE
The square size is invalid, the return code value is -5003. The square size must be betweenImageGeneratorSDKConstants.CRONTOSIGN_MIN_SQUARE_SIZE
andImageGeneratorSDKConstants.CRONTOSIGN_MAX_SQUARE_SIZE
pixels.- See Also:
- Constant Field Values
-
INPUT_VALUE_EMPTY
public static final int INPUT_VALUE_EMPTY
The input value is empty, the return code value is -5004.- See Also:
- Constant Field Values
-
INPUT_VALUE_TOO_LONG
public static final int INPUT_VALUE_TOO_LONG
The input value is too long, the return code value is -5005.- See Also:
- Constant Field Values
-
INPUT_VALUE_NOT_HEXA
public static final int INPUT_VALUE_NOT_HEXA
The input value is not a hexadecimal value, the return code value is -5006.- See Also:
- Constant Field Values
-
INPUT_VALUE_NOT_EVEN
public static final int INPUT_VALUE_NOT_EVEN
The input value has not an even length, the return code value is -5007.- See Also:
- Constant Field Values
-
QRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUE
public static final int QRCODE_ERROR_CORRECTION_LEVEL_INVALID_VALUE
The error correction level is invalid, the return code value is -5008.- See Also:
- Constant Field Values
-
-