| 12 | } |
| 13 | |
| 14 | NullPointer::NullPointer(const char *varname, const char *func) |
| 15 | :All("In " + safe_str(func) + ": NULL pointer: " + safe_str(varname)), |
| 16 | varname(varname) |
| 17 | {} |
| 18 | |
| 19 | InvalidArgument::InvalidArgument(const char *expr, const char *func) |
| 20 | :All("In " + safe_str(func) + ": Invalid argument; expected: " + safe_str(expr)), |
nothing calls this directly
no test coverage detected