Class SDKException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.adobe.pdfservices.operation.exception.SDKException
-
- All Implemented Interfaces:
Serializable
public class SDKException extends RuntimeException
SDKException is typically thrown for client-side or network errors.- See Also:
ServiceApiException
,ServiceUsageException
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SDKException(String message)
Constructs an SDKException with the specified detail message.SDKException(String message, Throwable cause)
Creates an SDKException with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SDKException
public SDKException(String message, Throwable cause)
Creates an SDKException with the specified detail message and cause.- Parameters:
message
- exception detail messagecause
- the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
SDKException
public SDKException(String message)
Constructs an SDKException with the specified detail message.- Parameters:
message
- exception detail message
-
-