Changeset 10519


Ignore:
Timestamp:
2005-08-16T13:35:23+12:00 (19 years ago)
Author:
mdewsnip
Message:

Exceptions now handled through DebugStream, as they all should be.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/metadata/DocXMLFile.java

    r9701 r10519  
    145145        }
    146146    }
    147     catch (Exception ex) {
    148         System.err.println("Exception: " + ex);
    149         ex.printStackTrace();
     147    catch (Exception exception) {
     148        DebugStream.printStackTrace(exception);
    150149    }
    151150
     
    268267        }
    269268    }
    270     catch (Exception ex) {
    271         System.err.println("Exception: " + ex);
    272         ex.printStackTrace();
     269    catch (Exception exception) {
     270        DebugStream.printStackTrace(exception);
    273271    }
    274272    }
Note: See TracChangeset for help on using the changeset viewer.