activemq-cpp-3.6.0
activemq::exceptions::ActiveMQException Class Reference

#include <src/main/activemq/exceptions/ActiveMQException.h>

Inheritance diagram for activemq::exceptions::ActiveMQException:

Public Member Functions

 ActiveMQException ()
 Default Constructor.
 ActiveMQException (const ActiveMQException &ex)
 Copy Constructor.
 ActiveMQException (const decaf::lang::Exception &ex)
 Copy Constructor.
 ActiveMQException (const char *file, const int lineNumber, const char *msg,...)
 Constructor - Initializes the file name and line number where this message occurred.
 ActiveMQException (const char *file, const int lineNumber, const std::exception *cause, const char *msg,...)
 Constructor - Initializes the file name and line number where this message occurred.
virtual ~ActiveMQException () throw ()
virtual ActiveMQExceptionclone () const
 Clones this exception.
virtual cms::CMSException convertToCMSException () const
 Converts this exception to a new CMSException.
- Public Member Functions inherited from decaf::lang::Exception
 Exception ()
 Default Constructor.
 Exception (const Exception &ex)
 Copy Constructor.
 Exception (const std::exception *cause)
 Constructor.
 Exception (const char *file, const int lineNumber, const char *msg,...)
 Constructor - Initializes the file name and line number where this message occurred.
 Exception (const char *file, const int lineNumber, const std::exception *cause, const char *msg,...)
 Constructor - Initializes the file name and line number where this message occurred.
virtual ~Exception () throw ()
virtual std::string getMessage () const
 Gets the message for this exception.
virtual const std::exception * getCause () const
 Gets the exception that caused this one to be thrown, this allows for chaining of exceptions in the case of a method that throws only a particular exception but wishes to allow for the real causal exception to be passed only in case the caller knows about that type of exception and wishes to respond to it.
virtual void initCause (const std::exception *cause)
 Initializes the contained cause exception with the one given.
virtual const char * what () const throw ()
 Implement method from std::exception.
virtual void setMessage (const char *msg,...)
 Sets the cause for this exception.
virtual void setMark (const char *file, const int lineNumber)
 Adds a file/line number to the stack trace.
virtual std::vector< std::pair
< std::string, int > > 
getStackTrace () const
 Provides the stack trace for every point where this exception was caught, marked, and rethrown.
virtual void printStackTrace () const
 Prints the stack trace to std::err.
virtual void printStackTrace (std::ostream &stream) const
 Prints the stack trace to the given output stream.
virtual std::string getStackTraceString () const
 Gets the stack trace as one contiguous string.
Exceptionoperator= (const Exception &ex)
 Assignment operator, copies one Exception to another.
- Public Member Functions inherited from decaf::lang::Throwable
 Throwable ()
virtual ~Throwable () throw ()

Additional Inherited Members

- Protected Member Functions inherited from decaf::lang::Exception
virtual void setStackTrace (const std::vector< std::pair< std::string, int > > &trace)
virtual void buildMessage (const char *format, va_list &vargs)
- Protected Attributes inherited from decaf::lang::Exception
ExceptionData * data

Constructor & Destructor Documentation

activemq::exceptions::ActiveMQException::ActiveMQException ( )

Default Constructor.

activemq::exceptions::ActiveMQException::ActiveMQException ( const ActiveMQException ex)

Copy Constructor.

Parameters
exThe Exception whose internal data is copied into this instance.
activemq::exceptions::ActiveMQException::ActiveMQException ( const decaf::lang::Exception ex)

Copy Constructor.

Parameters
exThe Exception whose internal data is copied into this instance.
activemq::exceptions::ActiveMQException::ActiveMQException ( const char *  file,
const int  lineNumber,
const char *  msg,
  ... 
)

Constructor - Initializes the file name and line number where this message occurred.

Sets the message to report, using an optional list of arguments to parse into the message.

Parameters
fileThe file name where exception occurs.
lineNumberThe line number where the exception occurred.
msgThe message to report.
...The list of primitives that are formatted into the message.
activemq::exceptions::ActiveMQException::ActiveMQException ( const char *  file,
const int  lineNumber,
const std::exception *  cause,
const char *  msg,
  ... 
)

Constructor - Initializes the file name and line number where this message occurred.

Sets the message to report, using an optional list of arguments to parse into the message.

Parameters
fileThe file name where exception occurs
lineNumberThe line number where the exception occurred.
causeThe exception that was the cause for this one to be thrown.
msgThe message to report
...list of primitives that are formatted into the message
virtual activemq::exceptions::ActiveMQException::~ActiveMQException ( ) throw ()
virtual

Member Function Documentation

virtual ActiveMQException* activemq::exceptions::ActiveMQException::clone ( ) const
virtual

Clones this exception.

This is useful for cases where you need to preserve the type of the original exception as well as the message. All subclasses should override.

Returns
Copy of this Exception object

Reimplemented from decaf::lang::Exception.

Reimplemented in activemq::exceptions::BrokerException, and activemq::exceptions::ConnectionFailedException.

virtual cms::CMSException activemq::exceptions::ActiveMQException::convertToCMSException ( ) const
virtual

Converts this exception to a new CMSException.

Returns
a CMSException with the data from this exception

The documentation for this class was generated from the following file: