SMILA (incubation) API documentation

org.eclipse.smila.objectstore
Class BadRequestException

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.BadRequestException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
InvalidStoreNameException, NoSuchObjectException, NoSuchStoreException, StoreExistsException

public class BadRequestException
extends ObjectStoreException

Subclass of ObjectStoreException for errors that are caused by invalid arguments or other conditions that make it impossible to perform an operation. Subclasses may describe the error situation in more detail. It does not make sense for the client to retry the operation without further preparations.

See Also:
Serialized Form

Constructor Summary
BadRequestException(java.lang.String message)
          create exception with description only.
BadRequestException(java.lang.String message, java.lang.Throwable cause)
          create exception with description and causing exception.
BadRequestException(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

BadRequestException

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


BadRequestException

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


BadRequestException

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


SMILA (incubation) API documentation