mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 11:55:30 +00:00
Changed parse_error to derive from std::runtime_error
This commit is contained in:
parent
0aec248de3
commit
4d67d96d7a
10
peglib.h
10
peglib.h
@ -620,13 +620,9 @@ private:
|
||||
*/
|
||||
// Note: 'parse_error' exception class should be be used in sematic action
|
||||
// handlers to reject the rule.
|
||||
struct parse_error {
|
||||
parse_error() = default;
|
||||
parse_error(const char *s) : s_(s) {}
|
||||
const char *what() const { return s_.empty() ? nullptr : s_.data(); }
|
||||
|
||||
private:
|
||||
std::string s_;
|
||||
class parse_error : public std::runtime_error {
|
||||
public:
|
||||
parse_error(const char *what_arg) : std::runtime_error(what_arg) {}
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user