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>
 
  
 | 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_ | 
| Friends | |
| std::ostream & | operator<< (std::ostream &out, const BadgerDbException &exception) | 
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.
| badgerdb::BadIndexInfoException::BadIndexInfoException | ( | const std::string & | reason | ) |  [explicit] | 
Constructs a file not found exception for the given file.
| name | Name of file that doesn't exist. | 
Definition at line 15 of file bad_index_info_exception.cpp.
: BadgerDbException(""), reason_(reason) { std::stringstream ss; ss << "Bad Index Info read: " << reason_; message_.assign(ss.str()); }
| virtual const std::string& badgerdb::BadgerDbException::message | ( | ) | const  [inline, virtual, inherited] | 
Returns a message describing the problem that caused this exception.
Definition at line 38 of file badgerdb_exception.h.
{ return message_; }
| virtual const std::string& badgerdb::BadIndexInfoException::reason | ( | ) | const  [inline, virtual] | 
Returns the name of the file that caused this exception.
Definition at line 32 of file bad_index_info_exception.h.
{ return reason_; }
| virtual const char* badgerdb::BadgerDbException::what | ( | ) | const  throw ()  [inline, virtual, inherited] | 
Returns a description of the exception.
Definition at line 45 of file badgerdb_exception.h.
{ return message_.c_str(); }
| std::ostream& operator<< | ( | std::ostream & | out, | 
| const BadgerDbException & | exception | ||
| ) |  [friend, inherited] | 
Formats this exception for printing on the given stream.
| out | Stream to print exception to. | 
| exception | Exception to print. | 
Definition at line 54 of file badgerdb_exception.h.
                                                                      {
    out << exception.message();
    return out;
  }
| std::string badgerdb::BadgerDbException::message_  [protected, inherited] | 
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.
 1.7.6.1
 1.7.6.1