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

An exception that is thrown when a file deletion is requested for a filename that's currently open. More...

#include <file_open_exception.h>

Inheritance diagram for wiscdb::FileOpenException:
wiscdb::WiscDbException

Public Member Functions

 FileOpenException (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_
 

Detailed Description

An exception that is thrown when a file deletion is requested for a filename that's currently open.

Definition at line 20 of file file_open_exception.h.

Constructor & Destructor Documentation

wiscdb::FileOpenException::FileOpenException ( const std::string &  name)
explicit

Constructs a file open exception for the given file.

Parameters
nameName of file that's open.

Definition at line 15 of file file_open_exception.cpp.

16  : WiscDbException(""), filename_(name) {
17  std::stringstream ss;
18  ss << "File is currently open: " << filename_;
19  message_.assign(ss.str());
20 }
WiscDbException(const std::string &msg)
const std::string & filename_

Member Function Documentation

virtual const std::string& wiscdb::FileOpenException::filename ( ) const
inlinevirtual

Returns the name of the file that caused this exception.

Definition at line 32 of file file_open_exception.h.

32 { return filename_; }
const std::string & filename_
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

const std::string& wiscdb::FileOpenException::filename_
protected

Name of file that caused this exception.

Definition at line 38 of file file_open_exception.h.

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: