| 18 | return errstr.c_str(); |
| 19 | } |
| 20 | failure(const char *s, const char *sqlstate_ = "") throw() |
| 21 | : errstr(), sqlstate() { |
| 22 | errstr = s; |
| 23 | sqlstate = sqlstate_; |
| 24 | }; |
| 25 | }; |
| 26 | |
| 27 | struct broken : failure { |
nothing calls this directly
no outgoing calls
no test coverage detected