Class ServiceConnectionException

  • All Implemented Interfaces:
    Serializable

    @Deprecated
    public class ServiceConnectionException
    extends RuntimeException
    Deprecated.
    Use ServiceConnectionException instead. This class will be removed in the future.
    A ServiceConnectionException will be thrown by the communication layer to indicate a connection problem, for instance, the connection timed out. Since the communication is completely hidden from the application (the calling service), this exception may occur arbitrary just like a normal runtime exception. Unlike java.rmi.RemoteException there is no need to explicitly handle it but it may be reasonable when calling another service (which may be implicitly called remotely).
    See Also:
    Serialized Form
    • Constructor Detail

      • ServiceConnectionException

        public ServiceConnectionException​(String message,
                                          Throwable cause)
        Deprecated.
        Create a new exception with a message and a cause.
        Parameters:
        message -
        cause -
      • ServiceConnectionException

        public ServiceConnectionException​(String message)
        Deprecated.
        Create a new exception with just a message.
        Parameters:
        message -