public final class SDKOperationFailedException extends SDKException
SDKOperationFailedException is thrown if the operation that SDK user is trying to perform failed
The reasons for SDKOperationFailedException maybe:
i) Improper action (such as creating duplicate resources, users) that results in action not being completed
ii) "Bad request" response from server
iii) Some Internal errors (in this case, a detailed stacktrace will e logged to file, if the logger is enabled)
| Constructor and Description |
|---|
SDKOperationFailedException()
Constructs a new exception with no message
|
SDKOperationFailedException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
SDKOperationFailedException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and
cause.
|
SDKOperationFailedException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail
message of cause
|
public SDKOperationFailedException()
public SDKOperationFailedException(java.lang.String message)
message - the detail message which can be displayed on calling getmessagepublic SDKOperationFailedException(java.lang.String message,
java.lang.Throwable cause)
message - the detailed messagecause - the cause which can be retrieved using getcause() methodpublic SDKOperationFailedException(java.lang.Throwable cause)
cause - the cause which can be retrieved using getcause() method