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 Details

    • WebConnectException

      public WebConnectException()
      Constructs a new WebConnectException instance.
    • WebConnectException

      public WebConnectException(String message)
      Constructs a new WebConnectException with a message.
      Parameters:
      message - the detail message.
    • WebConnectException

      public WebConnectException(Throwable cause)
      Constructs a new WebConnectException with a cause.
      Parameters:
      cause - the cause of this exception.
    • WebConnectException

      public WebConnectException(String message, Throwable cause)
      Constructs a new WebConnectException with a message and cause.
      Parameters:
      message - the detail message.
      cause - the cause of this exception.