| 20 | |
| 21 | |
| 22 | int main() { |
| 23 | |
| 24 | try { |
| 25 | dbFront dbf; |
| 26 | } |
| 27 | catch(sqlite_exception e) { |
| 28 | cout << "Unexpected error " << e.what() << endl; |
| 29 | exit(EXIT_FAILURE); |
| 30 | } |
| 31 | catch(...) { |
| 32 | cout << "Unknown error\n"; |
| 33 | exit(EXIT_FAILURE); |
| 34 | } |
| 35 | |
| 36 | cout << "OK\n"; |
| 37 | exit(EXIT_SUCCESS); |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected