#include <Exception.h>
Public Member Functions | |
Exception (const util::String &message) | |
virtual | ~Exception () throw () |
const sk::util::String | getMessage () const |
const sk::util::Class | getClass () const |
Returns the object's class. | |
const char * | what () const throw () |
virtual Object & | self () |
Returns a reference to itself. | |
virtual const Object & | self () const |
Object * | clone () const |
Instantiates another object of the same class as a copy of itself. | |
virtual uint64_t | getId () const |
Returns a unique object id. | |
virtual const String | toString () const |
Returns a string representation of the object. By default, it returns the object's class and the objects's id. | |
virtual const String | inspect () const |
Returns a string containing human-readable representation of the object. | |
Static Public Member Functions | |
template<typename S , typename T , typename TMF > | |
static void | guard (const S &stream, T &target, TMF method, const char *spot=0) |
Protected Member Functions | |
const String | join (const String &s1, const String &s2) const |
const String | join (const String &s1, int i1) const |
sk::util::Exception::Exception | ( | const util::String & | message | ) |
virtual sk::util::Exception::~Exception | ( | ) | throw () [virtual] |
Object* sk::util::Object::clone | ( | ) | const [inherited] |
Instantiates another object of the same class as a copy of itself.
Reimplemented in sk::rt::logger::Destination, and sk::util::String.
const sk::util::Class sk::util::Exception::getClass | ( | ) | const [virtual] |
Returns the object's class.
Reimplemented from sk::util::Object.
Reimplemented in sk::io::ClosedChannelException, sk::io::EOFException, sk::io::IOException, sk::rt::thread::Exit, sk::util::IllegalStateException, sk::util::IndexOutOfBoundsException, sk::util::InsufficientMemoryException, sk::util::InterruptedException, sk::util::MissingResourceException, sk::util::NoSuchElementException, sk::util::NullPointerException, sk::util::NumberFormatException, sk::util::SystemException, and sk::util::UnsupportedOperationException.
virtual uint64_t sk::util::Object::getId | ( | ) | const [virtual, inherited] |
const sk::util::String sk::util::Exception::getMessage | ( | ) | const |
void sk::util::Exception::guard | ( | const S & | stream, | |
T & | target, | |||
TMF | method, | |||
const char * | spot = 0 | |||
) | [inline, static] |
Referenced by sk::util::ArrayList< T >::~ArrayList().
virtual const String sk::util::Object::inspect | ( | ) | const [virtual, inherited] |
Returns a string containing human-readable representation of the object.
Reimplemented in sk::rt::thread::AbstractLock, sk::rt::Thread, sk::util::Class, sk::util::Container, sk::util::slot::Pointer< T, Mixin >, sk::util::slot::Reference< T, Mixin >, sk::util::String, and sk::util::StringArray.
virtual const Object& sk::util::Object::self | ( | ) | const [virtual, inherited] |
Reimplemented in sk::util::String.
virtual Object& sk::util::Object::self | ( | ) | [virtual, inherited] |
virtual const String sk::util::Object::toString | ( | ) | const [virtual, inherited] |
Returns a string representation of the object. By default, it returns the object's class and the objects's id.
Reimplemented in sk::rt::logger::Level, sk::rt::thread::State, sk::util::Boolean, sk::util::Class, sk::util::Container, sk::util::Pathname, and sk::util::String.
const char* sk::util::Exception::what | ( | ) | const throw () |