BadgerDB
 All Classes Namespaces Functions Variables Typedefs Enumerations Friends Pages
Public Member Functions | Protected Attributes | List of all members
badgerdb::BadIndexInfoException Class Reference

An exception that is thrown when a file operation is requested for a filename that doesn't exist. More...

#include <bad_index_info_exception.h>

Inheritance diagram for badgerdb::BadIndexInfoException:
badgerdb::BadgerDbException

Public Member Functions

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

Protected Attributes

const std::string & reason_
 
std::string message_
 

Detailed Description

An exception that is thrown when a file operation is requested for a filename that doesn't exist.

Definition at line 20 of file bad_index_info_exception.h.

Constructor & Destructor Documentation

badgerdb::BadIndexInfoException::BadIndexInfoException ( const std::string &  reason)
explicit

Constructs a file not found exception for the given file.

Parameters
nameName of file that doesn't exist.

Definition at line 15 of file bad_index_info_exception.cpp.

17  std::stringstream ss;
18  ss << "Bad Index Info read: " << reason_;
19  message_.assign(ss.str());
20 }
BadgerDbException(const std::string &msg)
virtual const std::string & reason() const

Member Function Documentation

virtual const std::string& badgerdb::BadgerDbException::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 badgerdb_exception.h.

38 { return message_; }
virtual const std::string& badgerdb::BadIndexInfoException::reason ( ) const
inlinevirtual

Returns the name of the file that caused this exception.

Definition at line 32 of file bad_index_info_exception.h.

32 { return reason_; }
virtual const char* badgerdb::BadgerDbException::what ( ) const
throw (
)
inlinevirtualinherited

Returns a description of the exception.

Returns
Description of the exception.

Definition at line 45 of file badgerdb_exception.h.

45 { return message_.c_str(); }

Member Data Documentation

std::string badgerdb::BadgerDbException::message_
protectedinherited

Message describing the problem that caused this exception.

Definition at line 64 of file badgerdb_exception.h.

const std::string& badgerdb::BadIndexInfoException::reason_
protected

Name of file that caused this exception.

Definition at line 38 of file bad_index_info_exception.h.


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