Changed parse_error to derive from std::runtime_error

pull/199/head
yhirose 3 years ago
parent 0aec248de3
commit 4d67d96d7a
  1. 10
      peglib.h

@ -620,13 +620,9 @@ private:
*/ */
// Note: 'parse_error' exception class should be be used in sematic action // Note: 'parse_error' exception class should be be used in sematic action
// handlers to reject the rule. // handlers to reject the rule.
struct parse_error { class parse_error : public std::runtime_error {
parse_error() = default; public:
parse_error(const char *s) : s_(s) {} parse_error(const char *what_arg) : std::runtime_error(what_arg) {}
const char *what() const { return s_.empty() ? nullptr : s_.data(); }
private:
std::string s_;
}; };
/* /*

Loading…
Cancel
Save