Class SdkFatalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sportradar.livedata.sdk.common.exceptions.SdkException
-
- com.sportradar.livedata.sdk.common.exceptions.SdkFatalException
-
- All Implemented Interfaces:
Serializable
public class SdkFatalException extends SdkException implements Serializable
SDK exception that is fatal- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SdkFatalException(String message)
Initializes a new instance of theSdkFatalException
class.SdkFatalException(String message, Throwable cause)
Initializes a new instance of theSdkFatalException
class.SdkFatalException(Throwable cause)
Initializes a new instance of theSdkFatalException
class.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SdkFatalException
public SdkFatalException(String message)
Initializes a new instance of theSdkFatalException
class.- Parameters:
message
- the detail message (which is saved for later retrieval by thegetMessage()
method).
-
SdkFatalException
public SdkFatalException(Throwable cause)
Initializes a new instance of theSdkFatalException
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.)
-
SdkFatalException
public SdkFatalException(String message, Throwable cause)
Initializes a new instance of theSdkFatalException
class.- 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.)
-
-