public class StringeeException
extends RuntimeException
Defines runtime exceptions thrown by the Stringee Android SDK.
Public Constructors | |
---|---|
StringeeException()
Constructor with no detail message. |
|
StringeeException(String message)
Constructor with a detail message. |
|
StringeeException(String message, Throwable throwable)
Constructs a new exception with the specified detail message and cause. |
|
StringeeException(Throwable throwable)
Constructs a new exception with the cause. |
StringeeException()
Constructor with no detail message.
StringeeException(String message)
Constructor with a detail message.
Parameters | |
---|---|
message |
The detail message of the exception. |
StringeeException(String message, Throwable throwable)
Constructs a new exception with the specified detail message and cause.
Parameters | |
---|---|
message |
The detail message of the exception. |
throwable |
The cause. |
StringeeException(Throwable throwable)
Constructs a new exception with the cause.
Parameters | |
---|---|
throwable |
The cause. |