diff options
Diffstat (limited to 'commands.h')
-rw-r--r-- | commands.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ namespace commands { class CommandException : public std::runtime_error { public: CommandException(const char *s) : std::runtime_error(s) {}; + CommandException(std::string s) : std::runtime_error(s.c_str()) {}; }; void init(); |