| 165 | namespace tinyformat { |
| 166 | |
| 167 | class format_error: public std::runtime_error |
| 168 | { |
| 169 | public: |
| 170 | explicit format_error(const std::string &what): std::runtime_error(what) { |
| 171 | } |
| 172 | }; |
| 173 | |
| 174 | //------------------------------------------------------------------------------ |
| 175 | namespace detail { |