20 lines
419 B
C++
20 lines
419 B
C++
#pragma once
|
|
#ifndef MESSMER_BLOCKSTORE_UTILS_FILEDOESNTEXISTEXCEPTION_H_
|
|
#define MESSMER_BLOCKSTORE_UTILS_FILEDOESNTEXISTEXCEPTION_H_
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace blockstore {
|
|
|
|
class FileDoesntExistException: public std::runtime_error {
|
|
public:
|
|
explicit FileDoesntExistException(const boost::filesystem::path &filepath);
|
|
virtual ~FileDoesntExistException();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|