public final class ServiceConnectionException
extends java.lang.RuntimeException
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).| Constructor and Description |
|---|
ServiceConnectionException(java.lang.String message)
Create a new exception with just a message.
|
ServiceConnectionException(java.lang.String message,
java.lang.Throwable cause)
Create a new exception with a message and a cause.
|
public ServiceConnectionException(java.lang.String message,
java.lang.Throwable cause)
message - cause - public ServiceConnectionException(java.lang.String message)
message -