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

An exception that is thrown when buffer capacity is exceeded. More...

#include <buffer_exceeded_exception.h>

Inheritance diagram for wiscdb::BufferExceededException:
wiscdb::WiscDbException

Public Member Functions

 BufferExceededException ()
 
virtual const std::string & message () const
 
virtual const char * what () const throw ()
 

Protected Attributes

std::string message_
 

Detailed Description

An exception that is thrown when buffer capacity is exceeded.

Definition at line 19 of file buffer_exceeded_exception.h.

Constructor & Destructor Documentation

wiscdb::BufferExceededException::BufferExceededException ( )
explicit

Constructs a buffer exceeded exception.

Definition at line 15 of file buffer_exceeded_exception.cpp.

16  : WiscDbException(""){
17  std::stringstream ss;
18  ss << "Exceeded the buffer pool capacity";
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.


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