public final class SDKInvalidArgumentException extends SDKException
SDKInvalidArgumentException is thrown if the SDK user passes un supported, invalid arguments to the function
The reasons for SDKInvalidArgumentException maybe:
i) Passing null or empty values for mandatory fields of a function
ii) Passing negative values for id fields
| Constructor and Description |
|---|
SDKInvalidArgumentException()
Constructs a new exception with no message
|
SDKInvalidArgumentException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
SDKInvalidArgumentException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and
cause.
|
SDKInvalidArgumentException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail
message of cause
|
public SDKInvalidArgumentException()
public SDKInvalidArgumentException(java.lang.String message)
message - the detail message which can be displayed on calling getmessagepublic SDKInvalidArgumentException(java.lang.String message,
java.lang.Throwable cause)
message - the detailed messagecause - the cause which can be retrieved using getcause() methodpublic SDKInvalidArgumentException(java.lang.Throwable cause)
cause - the cause which can be retrieved using getcause() method