| 27 | { |
| 28 | |
| 29 | struct syntax_error : std::exception |
| 30 | { |
| 31 | syntax_error(void) {} |
| 32 | syntax_error(const char* s) : exception() |
| 33 | { |
| 34 | std::cout << s << std::endl; |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | struct unsupported_type : std::exception |
| 39 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…