You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@locus.apache.org on 2000/08/07 04:55:59 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/utils UnImplNode.java

sboag       00/08/06 19:55:59

  Modified:    java/src/org/apache/xalan/utils UnImplNode.java
  Log:
  Spit out some diagnostics to System.out for right now... better than nothing for the moment.  Needs to be fixed.
  
  Revision  Changes    Path
  1.3       +2 -0      xml-xalan/java/src/org/apache/xalan/utils/UnImplNode.java
  
  Index: UnImplNode.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/utils/UnImplNode.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UnImplNode.java	2000/07/23 17:43:48	1.2
  +++ UnImplNode.java	2000/08/07 02:55:59	1.3
  @@ -75,6 +75,7 @@
      */
     public void error(int msg)
     {
  +    System.out.println("DOM ERROR! class: "+this.getClass().getName());
       throw new RuntimeException(XSLMessages.createMessage(msg, null));
     }
   
  @@ -83,6 +84,7 @@
      */
     public void error(int msg, Object[]args)
     {
  +    System.out.println("DOM ERROR! class: "+this.getClass().getName());
       throw new RuntimeException(XSLMessages.createMessage(msg, args)); //"UnImplNode error: "+msg);
     }