org.apache.qpid
Class AMQStoreException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.qpid.AMQException
              extended by org.apache.qpid.AMQInternalException
                  extended by org.apache.qpid.AMQStoreException
All Implemented Interfaces:
Serializable

public class AMQStoreException
extends AMQInternalException

StoreException is a specific type of internal error relating to errors in the message store, such as SQLException.

See Also:
Serialized Form

Constructor Summary
AMQStoreException(String msg)
           
AMQStoreException(String msg, Throwable cause)
          Creates an exception with an optional message and optional underlying cause.
 
Method Summary
 
Methods inherited from class org.apache.qpid.AMQException
cloneForCurrentThread, getErrorCode, isHardError, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AMQStoreException

public AMQStoreException(String msg,
                         Throwable cause)
Creates an exception with an optional message and optional underlying cause.

Parameters:
msg - The exception message. May be null if not to be set.
cause - The underlying cause of the exception. May be null if not to be set.

AMQStoreException

public AMQStoreException(String msg)


Licensed to the Apache Software Foundation