public class SsdkUnsupportedException
extends java.lang.Exception
Modifier and Type | Field and Description |
---|---|
static int |
DEVICE_NOT_SUPPORTED
DEVICE_NOT_SUPPORTED indicates that Device does not supported.
|
static int |
LIBRARY_NOT_INSTALLED
LIBRARY_NOT_INSTALLED indicates that SDK library is not installed.
|
static int |
LIBRARY_UPDATE_IS_RECOMMENDED
LIBRARY_UPDATE_IS_RECOMMENDED indicates that SDK library update is recommended.
|
static int |
LIBRARY_UPDATE_IS_REQUIRED
LIBRARY_UPDATE_IS_REQUIRED indicates that user must install SDK library to use the application.
|
static int |
VENDOR_NOT_SUPPORTED
VENDOR_NOT_SUPPORTED indicates that Vendor is not Samsung.
|
Constructor and Description |
---|
SsdkUnsupportedException(java.lang.String message,
int errorType)
Constructs a
SsdkUnsupportedException class with the specified detail message and error type. |
Modifier and Type | Method and Description |
---|---|
int |
getType()
Returns error type when SDK failed to initialize.
|
public static final int VENDOR_NOT_SUPPORTED
public static final int DEVICE_NOT_SUPPORTED
public static final int LIBRARY_NOT_INSTALLED
public static final int LIBRARY_UPDATE_IS_REQUIRED
public static final int LIBRARY_UPDATE_IS_RECOMMENDED
public SsdkUnsupportedException(java.lang.String message, int errorType)
SsdkUnsupportedException
class with the specified detail message and error type.message
- the detailed message.errorType
- the error type. ( VENDOR_NOT_SUPPORTED, DEVICE_NOT_SUPPORTED, LIBRARY_NOT_INSTALLED, LIBRARY_UPDATE_IS_REQUIRED, LIBRARY_UPDATE_IS_RECOMMENDED
)