wisc_db
Public Member Functions | Protected Attributes | List of all members
wiscdb::HashNotFoundException Class Reference

An exception that is thrown when an entry being looked up in the hash table is not present in it. More...

#include <hash_not_found_exception.h>

Inheritance diagram for wiscdb::HashNotFoundException:
wiscdb::WiscDbException

Public Member Functions

 HashNotFoundException (const std::string &nameIn, PageId pageNoIn)
 
virtual const std::string & message () const
 
virtual const char * what () const throw ()
 

Protected Attributes

const std::string & name
 
const PageId pageNo
 
std::string message_
 

Detailed Description

An exception that is thrown when an entry being looked up in the hash table is not present in it.

Definition at line 20 of file hash_not_found_exception.h.

Constructor & Destructor Documentation

wiscdb::HashNotFoundException::HashNotFoundException ( const std::string &  nameIn,
PageId  pageNoIn 
)
explicit

Constructs a hash not found exception for the given file.

Definition at line 15 of file hash_not_found_exception.cpp.

16  : WiscDbException(""), name(nameIn), pageNo(pageNoIn) {
17  std::stringstream ss;
18  ss << "The hash value is not present in the hash table for file: " << name << "page: " << pageNo;
19  message_.assign(ss.str());
20 }
WiscDbException(const std::string &msg)

Member Function Documentation

virtual const std::string& wiscdb::WiscDbException::message ( ) const
inlinevirtualinherited

Returns a message describing the problem that caused this exception.

Returns
Message describing the problem that caused this exception.

Definition at line 38 of file wiscdb_exception.h.

38 { return message_; }
virtual const char* wiscdb::WiscDbException::what ( ) const
throw (
)
inlinevirtualinherited

Returns a description of the exception.

Returns
Description of the exception.

Definition at line 45 of file wiscdb_exception.h.

45 { return message_.c_str(); }

Member Data Documentation

std::string wiscdb::WiscDbException::message_
protectedinherited

Message describing the problem that caused this exception.

Definition at line 64 of file wiscdb_exception.h.

const std::string& wiscdb::HashNotFoundException::name
protected

Name of file that caused this exception.

Definition at line 31 of file hash_not_found_exception.h.

const PageId wiscdb::HashNotFoundException::pageNo
protected

Page number in file

Definition at line 36 of file hash_not_found_exception.h.


The documentation for this class was generated from the following files: