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