Package cl.obcom.desktopfx.netserver
Class NetServerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.obcom.desktopfx.core.DesktopException
cl.obcom.desktopfx.netserver.NetServerException
- All Implemented Interfaces:
Serializable
Signals that a NetServer exception of some sort has occurred.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newNetServerException
instance.NetServerException
(String message) Constructs a newNetServerException
with amessage
.NetServerException
(String message, Throwable cause) Constructs a newNetServerException
with amessage
andcause
.NetServerException
(Throwable cause) Constructs a newNetServerException
with acause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NetServerException
public NetServerException()Constructs a newNetServerException
instance. -
NetServerException
Constructs a newNetServerException
with amessage
.- Parameters:
message
- the detail message.
-
NetServerException
Constructs a newNetServerException
with acause
.- Parameters:
cause
- the cause of this exception.
-
NetServerException
Constructs a newNetServerException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-