activemq-cpp-3.6.0
|
#include <src/main/decaf/io/IOException.h>
Public Member Functions | |
IOException () | |
Default Constructor. | |
IOException (const lang::Exception &ex) | |
Copy Constructor. | |
IOException (const IOException &ex) | |
Copy Constructor. | |
IOException (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. | |
IOException (const std::exception *cause) | |
Constructor. | |
IOException (const char *file, const int lineNumber, const char *msg,...) | |
Constructor. | |
virtual IOException * | clone () const |
Clones this exception. | |
virtual | ~IOException () throw () |
![]() | |
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. | |
Exception & | operator= (const Exception &ex) |
Assignment operator, copies one Exception to another. | |
![]() | |
Throwable () | |
virtual | ~Throwable () throw () |
Additional Inherited Members | |
![]() | |
virtual void | setStackTrace (const std::vector< std::pair< std::string, int > > &trace) |
virtual void | buildMessage (const char *format, va_list &vargs) |
![]() | |
ExceptionData * | data |
decaf::io::IOException::IOException | ( | ) |
Default Constructor.
decaf::io::IOException::IOException | ( | const lang::Exception & | ex | ) |
Copy Constructor.
ex | the exception to copy |
decaf::io::IOException::IOException | ( | const IOException & | ex | ) |
Copy Constructor.
ex | the exception to copy, which is an instance of this type |
decaf::io::IOException::IOException | ( | 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
file | The file name where exception occurs |
lineNumber | The line number where the exception occurred. |
cause | The exception that was the cause for this one to be thrown. |
msg | The message to report |
... | list of primitives that are formatted into the message |
decaf::io::IOException::IOException | ( | const std::exception * | cause | ) |
Constructor.
cause | Pointer to the exception that caused this one to be thrown, the object is cloned caller retains ownership. |
decaf::io::IOException::IOException | ( | const char * | file, |
const int | lineNumber, | ||
const char * | msg, | ||
... | |||
) |
Constructor.
file | The file name where exception occurs |
lineNumber | The line number where the exception occurred. |
msg | The message to report |
... | list of primitives that are formatted into the message |
|
virtual |
|
inlinevirtual |
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.
Reimplemented from decaf::lang::Exception.
Reimplemented in decaf::internal::net::ssl::openssl::OpenSSLSocketException, decaf::io::UTFDataFormatException, decaf::util::zip::ZipException, decaf::net::BindException, decaf::net::ConnectException, decaf::net::HttpRetryException, decaf::net::MalformedURLException, decaf::net::NoRouteToHostException, decaf::net::PortUnreachableException, decaf::net::ProtocolException, decaf::net::SocketTimeoutException, decaf::net::UnknownHostException, decaf::net::UnknownServiceException, decaf::io::EOFException, decaf::io::InterruptedIOException, decaf::io::UnsupportedEncodingException, and decaf::net::SocketException.