wisc_db
hash_table_exception.cpp
1 
8 #include "hash_table_exception.h"
9 
10 #include <sstream>
11 #include <string>
12 
13 namespace wiscdb {
14 
16  : WiscDbException(""){
17  std::stringstream ss;
18  ss << "Error occurred in buffer hash table.";
19  message_.assign(ss.str());
20 }
21 
22 }
Definition: buffer.h:14
Base class for all WiscDB-specific exceptions.