BadgerDB
 All Classes Namespaces Functions Variables Typedefs Friends
Public Member Functions | Protected Attributes | Friends
badgerdb::FileNotFoundException Class Reference

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

#include <file_not_found_exception.h>

Inheritance diagram for badgerdb::FileNotFoundException:
badgerdb::BadgerDbException

List of all members.

Public Member Functions

 FileNotFoundException (const std::string &name)
virtual const std::string & filename () const
virtual const std::string & message () const
virtual const char * what () const throw ()

Protected Attributes

const std::string & filename_
std::string message_

Friends

std::ostream & operator<< (std::ostream &out, const BadgerDbException &exception)

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 file_not_found_exception.h.


Constructor & Destructor Documentation

badgerdb::FileNotFoundException::FileNotFoundException ( const std::string &  name) [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 file_not_found_exception.cpp.

    : BadgerDbException(""), filename_(name) {
  std::stringstream ss;
  ss << "File not found: " << filename_;
  message_.assign(ss.str());
}

Member Function Documentation

virtual const std::string& badgerdb::FileNotFoundException::filename ( ) const [inline, virtual]

Returns the name of the file that caused this exception.

Definition at line 32 of file file_not_found_exception.h.

{ return filename_; }
virtual const std::string& badgerdb::BadgerDbException::message ( ) const [inline, virtual, inherited]

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.

{ return message_; }
virtual const char* badgerdb::BadgerDbException::what ( ) const throw () [inline, virtual, inherited]

Returns a description of the exception.

Returns:
Description of the exception.

Definition at line 45 of file badgerdb_exception.h.

{ return message_.c_str(); }

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const BadgerDbException exception 
) [friend, inherited]

Formats this exception for printing on the given stream.

Parameters:
outStream to print exception to.
exceptionException to print.
Returns:
Stream with exception printed.

Definition at line 54 of file badgerdb_exception.h.

                                                                      {
    out << exception.message();
    return out;
  }

Member Data Documentation

const std::string& badgerdb::FileNotFoundException::filename_ [protected]

Name of file that caused this exception.

Definition at line 38 of file file_not_found_exception.h.

std::string badgerdb::BadgerDbException::message_ [protected, inherited]

Message describing the problem that caused this exception.

Definition at line 64 of file badgerdb_exception.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Functions Variables Typedefs Friends