HID APPROVE SDK
5.9
HID Approve SDK for Android
|
Public Member Functions | |
Throwable | getCause () |
String | getMessage () |
RemoteException () | |
RemoteException (String message) | |
RemoteException (String message, Throwable cause) | |
RemoteException (ErrorCode errorCode) | |
RemoteException (ErrorCode errorCode, String message) | |
RemoteException (ErrorCode errorCode, String message, Throwable cause) | |
![]() | |
BaseException (ErrorCode errorCode) | |
BaseException (ErrorCode errorCode, String message) | |
BaseException (ErrorCode errorCode, String message, Throwable cause) | |
BaseException (ErrorCode errorCode, Throwable cause) | |
ErrorCode | getErrorCode () |
Public Attributes | |
Throwable | detail |
Execution of a remote method call failed. A RemoteException
is the common superclass for a number of communication-related exceptions that may occur during the execution of a remote method call.
|
inline |
Constructs a RemoteException
.
|
inline |
Constructs a RemoteException
with the specified detail message.
message | the detail message |
|
inline |
Constructs a RemoteException
with the specified detail message and cause. This constructor sets the detail field to the specified Throwable
.
message | the detail message |
cause | the cause |
|
inline |
Constructs a RemoteException
.
errorCode | Remote exception error code |
|
inline |
Constructs a RemoteException
with the specified detail message.
errorCode | Remote exception error code |
message | the detail message |
|
inline |
Constructs a RemoteException
with the specified detail message and cause. This constructor sets the detail field to the specified Throwable
.
errorCode | Remote exception error code |
message | the detail message |
cause | the cause |
|
inline |
Returns the cause of this exception. This method returns the value of the detail field.
null
.
|
inline |
Returns the detail message, including the message from the cause, if any, of this exception.
Throwable com.hidglobal.ia.service.exception.RemoteException.detail |
The cause of the remote exception.
This field predates the general-purpose exception chaining facility. The Throwable#getCause() method is now the preferred means of obtaining this information.