org.apache.qpid
Class AMQConnectionFailureException

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

public class AMQConnectionFailureException
extends AMQException

AMQConnectionFailureException indicates that a connection to a broker could not be formed.

CRC Card
Responsibilities Collaborations
Represents failure to connect to a broker.

See Also:
Serialized Form
Todo:
Not an AMQP exception as no status code.

Field Summary
(package private)  Collection<Exception> _exceptions
           
 
Constructor Summary
AMQConnectionFailureException(AMQConstant errorCode, String message, Throwable cause)
           
AMQConnectionFailureException(String message, Collection<Exception> exceptions)
           
AMQConnectionFailureException(String message, Throwable cause)
           
 
Method Summary
 Collection<Exception> getLinkedExceptions()
           
 
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
 

Field Detail

_exceptions

Collection<Exception> _exceptions
Constructor Detail

AMQConnectionFailureException

public AMQConnectionFailureException(String message,
                                     Throwable cause)

AMQConnectionFailureException

public AMQConnectionFailureException(AMQConstant errorCode,
                                     String message,
                                     Throwable cause)

AMQConnectionFailureException

public AMQConnectionFailureException(String message,
                                     Collection<Exception> exceptions)
Method Detail

getLinkedExceptions

public Collection<Exception> getLinkedExceptions()


Licensed to the Apache Software Foundation