Class XTablesServerNotFound
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kobe.xbot.Utilities.Exceptions.XTablesServerNotFound
- All Implemented Interfaces:
Serializable
Exception thrown when the client cannot find the XTABLES server.
This exception is used to indicate that an attempt to resolve the server
has failed because of an invalid mDNS setup or any other reason.
Author: Kobe
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnull
as its detail message.XTablesServerNotFound
(String message) Constructs a new exception with the specified detail message.XTablesServerNotFound
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.XTablesServerNotFound
(Throwable cause) Constructs a new exception with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
). -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XTablesServerNotFound
public XTablesServerNotFound()Constructs a new exception withnull
as its detail message. The cause is not initialized and may be subsequently initialized by a call toThrowable.initCause(java.lang.Throwable)
. -
XTablesServerNotFound
Constructs a new exception with the specified detail message. The cause is not initialized and may be subsequently initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
XTablesServerNotFound
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
-
XTablesServerNotFound
Constructs a new exception with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). A null value is permitted, and indicates that the cause is nonexistent or unknown.
-