Show
Ignore:
Timestamp:
06/24/09 13:38:47 (15 years ago)
Author:
mido
Message:

UI documentation almost finished; UIException redesigned and used instead of UI::ui_error function

Files:
1 modified

Legend:

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

    r395 r396  
    4444                        Sources(i)=mtmp; 
    4545                } 
    46                 catch (UIbuildException e){ 
     46                catch (UIException){ 
    4747                        // it is not mpdf - see if it is epdf 
    4848                        try { 
     
    5050                                if (etmp){ 
    5151                                        Sources(i) = new mepdf(etmp, true); 
    52                                 } 
    53                                  
     52                                }                                
    5453                        } 
    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                        } 
    5658                } 
    5759