summaryrefslogtreecommitdiffstats
path: root/tools/tool_errors.hpp
blob: cf898e690f9db2b0ea82c9ccd00a173e9357d71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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;
};

} // namespace host_tool
OpenPOWER on IntegriCloud