X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fpj2if.cpp;h=26c537620002eb36e81a9bc14148e1c60ccaeae5;hp=530f23be1537bf1fe6eeffbcb5fea650eec0ef67;hb=2d39e823ba389fc68e5317c422b55be006094252;hpb=2c61ff85796550481227f2fbec53506a6b5bd365 diff --git a/src/pj2if.cpp b/src/pj2if.cpp index 530f23b..26c5376 100644 --- a/src/pj2if.cpp +++ b/src/pj2if.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: pj2if.cpp,v 1.2 2000/06/18 10:27:11 kevin Exp $ +** $Id: pj2if.cpp,v 1.3 2000/06/19 17:58:13 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -140,6 +140,16 @@ pj2if_main (const int argc, char *const argv[]) int main (const int argc, char *const argv[]) { - return (pj2if_main(argc, argv)); + int retval = 1; + + try { + retval = pj2if_main(argc, argv); + } catch (exception e) { + cerr << "Exception: " << e.what() << endl; + } catch (...) { + cerr << "Unknown exception" << endl; + } + + return (retval); } #endif