Class QRCodeScannerSDKException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.vasco.digipass.sdk.utils.qrcodescanner.QRCodeScannerSDKException
-
- All Implemented Interfaces:
java.io.Serializable
public class QRCodeScannerSDKException extends java.lang.Exception
This exception is thrown when a problem occurs while using the QR Code Scanner SDK.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description QRCodeScannerSDKException(int errorCode)
Constructs a new QRCodeScannerSDKException.QRCodeScannerSDKException(int errorCode, java.lang.Throwable cause)
Constructs a new QRCodeScannerSDKException.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getErrorCode()
Gets the error code.
-
-
-
Constructor Detail
-
QRCodeScannerSDKException
public QRCodeScannerSDKException(int errorCode)
Constructs a new QRCodeScannerSDKException.- Parameters:
errorCode
- The error code. SeeQRCodeScannerSDKErrorCodes
for more details.
-
QRCodeScannerSDKException
public QRCodeScannerSDKException(int errorCode, java.lang.Throwable cause)
Constructs a new QRCodeScannerSDKException.- Parameters:
errorCode
- The error code. SeeQRCodeScannerSDKErrorCodes
for more details.cause
- Throwable describing the cause of the failure.
-
-