| java.lang.Object | ||||
| ↳ | java.lang.Throwable | |||
| ↳ | java.lang.Exception | |||
| ↳ | java.io.IOException | |||
| ↳ | com.nexmo.sdk.conversation.client.event.InternalNetworkException | |||
Generic network exception. Caused due to either UnknownHostException or SocketTimeoutException while processing requests.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
InternalNetworkException()
Constructs a new InternalNetworkException that includes the current stack trace.
| |||||||||||
|
InternalNetworkException(String message)
Constructs a new InternalNetworkException with the current stack trace and the specified detail message.
| |||||||||||
|
InternalNetworkException(String message, Throwable throwable)
Constructs a new InternalNetworkException with the current stack trace, the specified detail message and the specified cause.
| |||||||||||
|
InternalNetworkException(Throwable throwable)
Constructs a new InternalNetworkException with the current stack trace and the specified cause.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructs a new InternalNetworkException that includes the current stack trace.
Constructs a new InternalNetworkException with the current stack trace and the specified detail message.
| message | The detail message for this exception. Accepts null. |
|---|
Constructs a new InternalNetworkException with the current stack trace, the specified detail message and the specified cause.
| message | The detail message for this exception. Accepts null. |
|---|---|
| throwable | The cause of this exception. |
Constructs a new InternalNetworkException with the current stack trace and the specified cause.
| throwable | The cause of this exception. |
|---|