whitlock    2002/11/06 06:29:16

  Modified:    java/src/org/apache/wsif/util WSIFUtils.java
  Log:
  Quietly trace ClassCastExceptions
  
  Revision  Changes    Path
  1.21      +3 -3      xml-axis-wsif/java/src/org/apache/wsif/util/WSIFUtils.java
  
  Index: WSIFUtils.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/util/WSIFUtils.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- WSIFUtils.java    9 Oct 2002 12:39:15 -0000       1.20
  +++ WSIFUtils.java    6 Nov 2002 14:29:16 -0000       1.21
  @@ -765,7 +765,7 @@
                       .loadClass(formatHandlerShortName + FORMAT_HANDLER)
                       .newInstance();
           } catch (ClassNotFoundException exn1) {
  -            Trc.exception(exn1);
  +            Trc.ignoredException(exn1);
               try {
                   ClassLoader cl = Thread.currentThread().getContextClassLoader();
                   formatHandler =
  @@ -774,14 +774,14 @@
                               formatHandlerShortName + ELEMENT_FORMAT_HANDLER)
                           .newInstance();
               } catch (ClassNotFoundException exn2) {
  -                Trc.exception(exn2);
  +                Trc.ignoredException(exn2);
                   try {
                       formatHandler =
                           (WSIFFormatHandler) Class
                               .forName(formatHandlerShortName + FORMAT_HANDLER)
                               .newInstance();
                   } catch (ClassNotFoundException exn3) {
  -                    Trc.exception(exn3);
  +                    Trc.ignoredException(exn3);
                       //try {
                       formatHandler =
                           (WSIFFormatHandler) Class
  
  
  


Reply via email to