2015-03-12 14:27:51 +01:00
|
|
|
#include "FileDoesntExistException.h"
|
2014-12-09 17:19:59 +01:00
|
|
|
|
|
|
|
namespace bf = boost::filesystem;
|
|
|
|
|
|
|
|
using std::runtime_error;
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace blockstore {
|
|
|
|
|
|
|
|
FileDoesntExistException::FileDoesntExistException(const bf::path &filepath)
|
|
|
|
: runtime_error(string("The file ")+filepath.c_str()+" doesn't exist") {
|
|
|
|
}
|
|
|
|
|
|
|
|
FileDoesntExistException::~FileDoesntExistException() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|