Package cl.obcom.desktopfx.core
Class WebConnectException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.xml.ws.WebServiceException
cl.obcom.desktopfx.core.WebConnectException
- All Implemented Interfaces:
Serializable
public class WebConnectException
extends jakarta.xml.ws.WebServiceException
Signals that an error occurred while attempting to connect to a WebService at
a remote address and port. Typically, the connection was refused remotely
(e.g., no process is listening on the remote address/port).
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newWebConnectException
instance.WebConnectException
(String message) Constructs a newWebConnectException
with amessage
.WebConnectException
(String message, Throwable cause) Constructs a newWebConnectException
with amessage
andcause
.WebConnectException
(Throwable cause) Constructs a newWebConnectException
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
-
WebConnectException
public WebConnectException()Constructs a newWebConnectException
instance. -
WebConnectException
Constructs a newWebConnectException
with amessage
.- Parameters:
message
- the detail message.
-
WebConnectException
Constructs a newWebConnectException
with acause
.- Parameters:
cause
- the cause of this exception.
-
WebConnectException
Constructs a newWebConnectException
with amessage
andcause
.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-