| 17 | {} |
| 18 | |
| 19 | InvalidArgument::InvalidArgument(const char *expr, const char *func) |
| 20 | :All("In " + safe_str(func) + ": Invalid argument; expected: " + safe_str(expr)), |
| 21 | expr(expr) |
| 22 | {} |
| 23 | |
| 24 | VTableMissing::VTableMissing(const char *name) |
| 25 | :All("Missing vtable address: " + safe_str(name)), |
nothing calls this directly
no test coverage detected