blob: 96dfa1056850234278b8f6439d1bd269e37b573d [file] [log] [blame]
#pragma once
#include <exception>
#include <string>
namespace host_tool
{
class ToolException : public std::exception
{
public:
explicit ToolException(const std::string& message) : message(message){};
virtual const char* what() const noexcept override
{
return message.c_str();
}
private:
std::string message;
};
class NotFoundException : public ToolException
{
public:
explicit NotFoundException(const std::string& device) :
ToolException(std::string("Couldn't find " + device)){};
};
} // namespace host_tool