wisc_db
Main Page
Namespaces
Classes
Files
File List
home
newhall
public
cs44
wiscdb
src
exceptions
buffer_exceeded_exception.cpp
1
8
#include "buffer_exceeded_exception.h"
9
10
#include <sstream>
11
#include <string>
12
13
namespace
wiscdb
{
14
15
BufferExceededException::BufferExceededException
()
16
:
WiscDbException
(
""
){
17
std::stringstream ss;
18
ss <<
"Exceeded the buffer pool capacity"
;
19
message_
.assign(ss.str());
20
}
21
22
}
wiscdb
Definition:
buffer.h:14
wiscdb::WiscDbException
Base class for all WiscDB-specific exceptions.
Definition:
wiscdb_exception.h:18
wiscdb::BufferExceededException::BufferExceededException
BufferExceededException()
Definition:
buffer_exceeded_exception.cpp:15
wiscdb::WiscDbException::message_
std::string message_
Definition:
wiscdb_exception.h:64
Generated by
1.8.11