Creates a depth exceeded error.
| 151 | |
| 152 | /// Creates a depth exceeded error. |
| 153 | static Error depth_exceed(const std::string &msg) { |
| 154 | return Error(ErrorCode::DepthExceed, msg); |
| 155 | } |
| 156 | |
| 157 | /// Creates an unsupported operation error. |
| 158 | static Error unsupported(const std::string &msg) { |