#pragma once #ifndef BLOCKSTORE_UTILS_FILEDOESNTEXISTEXCEPTION_H_ #define BLOCKSTORE_UTILS_FILEDOESNTEXISTEXCEPTION_H_ #include #include namespace blockstore { class FileDoesntExistException: public std::runtime_error { public: FileDoesntExistException(const boost::filesystem::path &filepath); virtual ~FileDoesntExistException(); }; } #endif