STLdb

PrevUpHomeNext

Class lock_timeout_exception

stldb::lock_timeout_exception

Synopsis

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


class lock_timeout_exception : public stldb::stldb_exception {
public:
  // construct/copy/destruct
  lock_timeout_exception();
  lock_timeout_exception(const char *);
};

Description

Exception type thrown when a blocking wait is done with a timeout. If the timeout elapses before the lock or condition is acquired, An exception of this type is thrown.

lock_timeout_exception public construct/copy/destruct

  1. lock_timeout_exception();
  2. lock_timeout_exception(const char * why);

PrevUpHomeNext