Package io.scanbot.sdk.licensing
Class DeviceDeregistrationError
- java.lang.Object
-
- io.scanbot.sdk.licensing.DeviceDeregistrationError
-
public class DeviceDeregistrationError extends java.lang.ObjectDescription of error that occurred during device deregistration.
-
-
Constructor Summary
Constructors Constructor Description DeviceDeregistrationError(int deviceId, java.lang.String errorMessage)Constructs DeviceDeregistrationError with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDeviceId()Getter for deviceId field.java.lang.StringgetErrorMessage()Getter for errorMessage field.
-
-
-
Constructor Detail
-
DeviceDeregistrationError
public DeviceDeregistrationError(int deviceId, java.lang.String errorMessage)Constructs DeviceDeregistrationError with the given params.- Parameters:
deviceId- Sequential number of the device registration. Starts with 0. Each time a call to initializeLicense with a new license is made, the device ID.errorMessage- Error message describing the error.
-
-
Method Detail
-
getDeviceId
public int getDeviceId()
Getter for deviceId field. See constructor documentation for more information about the field.- Returns:
- deviceId
-
getErrorMessage
public java.lang.String getErrorMessage()
Getter for errorMessage field. See constructor documentation for more information about the field.- Returns:
- errorMessage
-
-