libcryfs/utils/FileDoesntExistException.h

20 lines
394 B
C
Raw Normal View History

2014-12-09 17:19:59 +01:00
#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:
FileDoesntExistException(const boost::filesystem::path &filepath);
virtual ~FileDoesntExistException();
};
}
#endif