libcryfs/src/blockstore/utils/FileDoesntExistException.cpp
Sebastian Messmer 9ccb006f61 - Switch some CI jobs to clang 15
- Fix clang-tidy warnings from Clang 15
2023-07-08 14:48:59 -07:00

17 lines
333 B
C++

#include "FileDoesntExistException.h"
namespace bf = boost::filesystem;
using std::string;
namespace blockstore {
FileDoesntExistException::FileDoesntExistException(const bf::path &filepath)
: runtime_error(string("The file ")+filepath.string()+" doesn't exist") {
}
FileDoesntExistException::~FileDoesntExistException() {
}
}