STLdb

PrevUpHomeNext

Class stldb_exception

stldb::stldb_exception

Synopsis

// In header: </Users/bobw/workspace/stldb_lib/stldb/exceptions.h>


class stldb_exception {
public:
  // construct/copy/destruct
  stldb_exception();
  stldb_exception(const char *);
  ~stldb_exception();

  // public member functions
  const char * what() const;
};

Description

As a convention, all exceptions thrown by STLdb inherit from this base, which in turn inherits from std::exception.

stldb_exception public construct/copy/destruct

  1. stldb_exception();
  2. stldb_exception(const char * why);
  3. ~stldb_exception();

stldb_exception public member functions

  1. const char * what() const;

PrevUpHomeNext