SMILA 1.0 API documentation

org.eclipse.smila.objectstore
Class ServiceUnavailableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.eclipse.smila.objectstore.ObjectStoreException
              extended by org.eclipse.smila.objectstore.ServiceUnavailableException
All Implemented Interfaces:
java.io.Serializable

public class ServiceUnavailableException
extends ObjectStoreException

Thrown to describe that some possibly temporary condition prevents the ObjectStoreService from performing an operation (e.g. network failures, if the service implementation depends on talking It may make sense for a client to retry the operation after a short time, but there is no guarantee that it will succeed then. The service implementation may use further subclasses or the Throwable.getCause() of this exception to describe the error in more details.

See Also:
Serialized Form

Constructor Summary
ServiceUnavailableException(java.lang.String message)
          create exception with description only.
ServiceUnavailableException(java.lang.String message, java.lang.Throwable cause)
          create exception with description and causing exception.
ServiceUnavailableException(java.lang.Throwable cause)
          create exception from causing exception.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ServiceUnavailableException

public ServiceUnavailableException(java.lang.String message,
                                   java.lang.Throwable cause)
create exception with description and causing exception.


ServiceUnavailableException

public ServiceUnavailableException(java.lang.String message)
create exception with description only.


ServiceUnavailableException

public ServiceUnavailableException(java.lang.Throwable cause)
create exception from causing exception.


SMILA 1.0 API documentation