| 44 | Error(const char* msg) FL_NOEXCEPT : message(msg) {} |
| 45 | Error(fl::string&& msg) FL_NOEXCEPT : message(fl::move(msg)) {} |
| 46 | bool is_empty() const FL_NOEXCEPT { return message.empty(); } |
| 47 | }; |
| 48 | |
| 49 | // Forward declaration for implementation |
no test coverage detected