|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.oasisopen.sca.ServiceRuntimeException org.oasisopen.sca.ServiceUnavailableException
public class ServiceUnavailableException
This exception signals problems in the interaction with remote services. These are exceptions that can be transient, so retrying is appropriate. Any exception that is a ServiceRuntimeException that is not a ServiceUnavailableException is unlikely to be resolved by retrying the operation, since it most likely requires human intervention.
Constructor Summary | |
---|---|
ServiceUnavailableException()
Constructs a ServiceUnavailableException with no detail message. |
|
ServiceUnavailableException(java.lang.String message)
Constructs a ServiceUnavailableException with the specified detail message. |
|
ServiceUnavailableException(java.lang.String message,
java.lang.Throwable cause)
Constructs a ServiceUnavailableException with the specified detail message and cause. |
|
ServiceUnavailableException(java.lang.Throwable cause)
Constructs a ServiceUnavailableException with the specified cause and a detail message of (cause==null ? null : cause.toString()). |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ServiceUnavailableException()
public ServiceUnavailableException(java.lang.String message)
message
- the detail messagepublic ServiceUnavailableException(java.lang.String message, java.lang.Throwable cause)
cause
is not
automatically incorporated in this exception's detail message.
message
- the detail messagecause
- the cause, or null if the cause is nonexistent
or unknownpublic ServiceUnavailableException(java.lang.Throwable cause)
cause
- the cause, or null if the cause is nonexistent
or unknown
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |