Changeset 400 for applications
- Timestamp:
- 07/01/09 13:09:24 (16 years ago)
- Location:
- applications/bdmtoolbox/mex
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/mex/merger.cpp
r394 r400 18 18 Sources(i)=mtmp; 19 19 } 20 catch (UI buildException e){20 catch (UIException){ 21 21 // it is not mpdf - see if it is epdf 22 22 try { … … 27 27 28 28 } 29 catch (...) {it_error("no mpdfs or epdfs found!");} 29 catch (UIException e) 30 { 31 it_error("No mpdfs or epdfs found! " + string(e.what())); 32 } 33 catch (std::exception e) { 34 it_error("Error in UI at "+_Sources[i].getPath()); 35 } 30 36 } 31 37 catch (std::exception e) { 38 it_error("Error in UI at "+_Sources[i].getPath()); 39 } 32 40 } 33 41 -
applications/bdmtoolbox/mex/merger_mx.cpp
r396 r400 56 56 it_error("No mpdfs or epdfs found! " + string(e.what())); 57 57 } 58 catch (std::exception e) { 59 it_error("Error in UI at "+_Sources[i].getPath()); 60 } 58 61 } 59 62 catch (std::exception e) { 63 it_error("Error in UI at "+_Sources[i].getPath()); 64 } 60 65 } 61 66