Changeset 396 for applications/bdmtoolbox
- Timestamp:
- 06/24/09 13:38:47 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/mex/merger_mx.cpp
r395 r396 44 44 Sources(i)=mtmp; 45 45 } 46 catch (UI buildException e){46 catch (UIException){ 47 47 // it is not mpdf - see if it is epdf 48 48 try { … … 50 50 if (etmp){ 51 51 Sources(i) = new mepdf(etmp, true); 52 } 53 52 } 54 53 } 55 catch (...) {it_error("no mpdfs or epdfs found!");} 54 catch (UIException e) 55 { 56 it_error("No mpdfs or epdfs found! " + string(e.what())); 57 } 56 58 } 57 59