Creates an unknown enum error.
| 136 | |
| 137 | /// Creates an unknown enum error. |
| 138 | static Error unknown_enum(const std::string &msg) { |
| 139 | return Error(ErrorCode::UnknownEnum, msg); |
| 140 | } |
| 141 | |
| 142 | /// Creates a type error. |
| 143 | static Error type_error(const std::string &msg) { |