| Patrick Venture | 36bffb4 | 2019-06-24 10:47:47 -0700 | [diff] [blame^] | 1 | #pragma once |
| 2 | |||||
| 3 | #include <exception> | ||||
| 4 | #include <string> | ||||
| 5 | |||||
| 6 | namespace ipmi_flash | ||||
| 7 | { | ||||
| 8 | |||||
| 9 | class MapperException : public std::exception | ||||
| 10 | { | ||||
| 11 | public: | ||||
| 12 | explicit MapperException(const std::string& message) : message(message) | ||||
| 13 | { | ||||
| 14 | } | ||||
| 15 | |||||
| 16 | virtual const char* what() const noexcept override | ||||
| 17 | { | ||||
| 18 | return message.c_str(); | ||||
| 19 | } | ||||
| 20 | |||||
| 21 | private: | ||||
| 22 | std::string message; | ||||
| 23 | }; | ||||
| 24 | |||||
| 25 | } // namespace ipmi_flash | ||||