Changeset 400

Show
Ignore:
Timestamp:
07/01/09 13:09:24 (15 years ago)
Author:
smidl
Message:

details in mergers

Location:
applications/bdmtoolbox/mex
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/merger.cpp

    r394 r400  
    1818                        Sources(i)=mtmp; 
    1919                } 
    20                 catch (UIbuildException e){ 
     20                catch (UIException){ 
    2121                        // it is not mpdf - see if it is epdf 
    2222                        try { 
     
    2727                                 
    2828                        } 
    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                        }                
    3036                } 
    31  
     37                catch (std::exception e) { 
     38                        it_error("Error in UI at "+_Sources[i].getPath()); 
     39                }                
    3240        } 
    3341 
  • applications/bdmtoolbox/mex/merger_mx.cpp

    r396 r400  
    5656                                it_error("No mpdfs or epdfs found! " + string(e.what())); 
    5757                        } 
     58                        catch (std::exception e) { 
     59                                it_error("Error in UI at "+_Sources[i].getPath()); 
     60                        } 
    5861                } 
    59  
     62                catch (std::exception e) { 
     63                        it_error("Error in UI at "+_Sources[i].getPath()); 
     64                } 
    6065        } 
    6166