public class

InternalNetworkException

extends IOException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ com.nexmo.sdk.conversation.client.event.InternalNetworkException

Class Overview

Generic network exception. Caused due to either UnknownHostException or SocketTimeoutException while processing requests.

Summary

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

Public Constructors

public InternalNetworkException ()

Constructs a new InternalNetworkException that includes the current stack trace.

public InternalNetworkException (String message)

Constructs a new InternalNetworkException with the current stack trace and the specified detail message.

Parameters
message The detail message for this exception. Accepts null.

public InternalNetworkException (String message, Throwable throwable)

Constructs a new InternalNetworkException with the current stack trace, the specified detail message and the specified cause.

Parameters
message The detail message for this exception. Accepts null.
throwable The cause of this exception.

public InternalNetworkException (Throwable throwable)

Constructs a new InternalNetworkException with the current stack trace and the specified cause.

Parameters
throwable The cause of this exception.