libcryfs/utils/FileDoesntExistException.h
2015-04-27 18:20:51 +02:00

20 lines
403 B
C++

#pragma once
#ifndef BLOCKSTORE_UTILS_FILEDOESNTEXISTEXCEPTION_H_
#define 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