Class SdkException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sportradar.livedata.sdk.common.exceptions.SdkException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidEntityException,MessageException,MissingPropertyFileException,PropertyException,ProtocolException,SdkFatalException,UnknownEnumException
Root exception of the SDK hierarchy
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSdkException(String message) Initializes a new instance of theSdkExceptionclass.SdkException(String message, Throwable cause) Initializes a new instance of theSdkExceptionclass.SdkException(Throwable cause) Initializes a new instance of theSdkExceptionclass. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SdkException
Initializes a new instance of theSdkExceptionclass.- Parameters:
message- the detail message (which is saved for later retrieval by thegetMessage()method).
-
SdkException
Initializes a new instance of theSdkExceptionclass.- Parameters:
cause- the cause (which is saved for later retrieval by the {code getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
SdkException
Initializes a new instance of theSdkExceptionclass.- Parameters:
message- the detail message (which is saved for later retrieval by thegetMessage()method).cause- the cause (which is saved for later retrieval by the {code getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-