Thrown when the the Character Encoding is not supported. More...
#include <src/main/decaf/io/UnsupportedEncodingException.h>

Public Member Functions | |
| UnsupportedEncodingException () | |
| Default Constructor. | |
| UnsupportedEncodingException (const lang::Exception &ex) | |
| Copy Constructor. | |
| UnsupportedEncodingException (const UnsupportedEncodingException &ex) | |
| Copy Constructor. | |
| UnsupportedEncodingException (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. | |
| UnsupportedEncodingException (const std::exception *cause) | |
| Constructor. | |
| UnsupportedEncodingException (const char *file, const int lineNumber, const char *msg,...) | |
| Constructor. | |
| virtual UnsupportedEncodingException * | clone () const |
| Clones this exception. | |
| virtual | ~UnsupportedEncodingException () throw () |
Thrown when the the Character Encoding is not supported.
| decaf::io::UnsupportedEncodingException::UnsupportedEncodingException | ( | ) |
Default Constructor.
| decaf::io::UnsupportedEncodingException::UnsupportedEncodingException | ( | const lang::Exception & | ex | ) |
Copy Constructor.
| ex | the exception to copy |
| decaf::io::UnsupportedEncodingException::UnsupportedEncodingException | ( | const UnsupportedEncodingException & | ex | ) |
Copy Constructor.
| ex | the exception to copy, which is an instance of this type |
| decaf::io::UnsupportedEncodingException::UnsupportedEncodingException | ( | 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::UnsupportedEncodingException::UnsupportedEncodingException | ( | 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::UnsupportedEncodingException::UnsupportedEncodingException | ( | 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 decaf::io::UnsupportedEncodingException::~UnsupportedEncodingException | ( | ) | throw () [virtual] |
| virtual UnsupportedEncodingException* decaf::io::UnsupportedEncodingException::clone | ( | ) | const [inline, 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.
Reimplemented from decaf::io::IOException.
1.6.1