| 25 | // during the parse. |
| 26 | template<typename Iter> |
| 27 | struct excessive_nesting : std::runtime_error |
| 28 | { |
| 29 | excessive_nesting(Iter it) : |
| 30 | runtime_error("excessive_nesting"), |
| 31 | iter(it) |
| 32 | {} |
| 33 | Iter iter; |
| 34 | }; |
| 35 | |
| 36 | |
| 37 | // The only globals we need to parse JSON are: "How many data structures |