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

public class SdkException extends Exception implements Serializable
Root exception of the SDK hierarchy
See Also:
  • Constructor Details

    • SdkException

      public SdkException(String message)
      Initializes a new instance of the SdkException class.
      Parameters:
      message - the detail message (which is saved for later retrieval by the getMessage() method).
    • SdkException

      public SdkException(Throwable cause)
      Initializes a new instance of the SdkException class.
      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

      public SdkException(String message, Throwable cause)
      Initializes a new instance of the SdkException class.
      Parameters:
      message - the detail message (which is saved for later retrieval by the getMessage() 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.)