Author: skitching
Date: Sun Feb  6 23:44:21 2005
New Revision: 151697

URL: http://svn.apache.org/viewcvs?view=rev&rev=151697
Log:
Update copyright to 2005
set svn:keywords property

Modified:
    
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/InvalidRuleException.java
    
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/ParseException.java

Modified: 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/InvalidRuleException.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/InvalidRuleException.java?view=diff&r1=151696&r2=151697
==============================================================================
--- 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/InvalidRuleException.java
 (original)
+++ 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/InvalidRuleException.java
 Sun Feb  6 23:44:21 2005
@@ -1,6 +1,6 @@
-/* $Id: $
+/* $Id$
  *
- * Copyright 2001-2004 The Apache Software Foundation.
+ * Copyright 2001-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -22,6 +22,9 @@
  * Thrown when a problem is detected as a rule is added to a RuleManager.
  * One possible cause is that the pattern is invalid, but there may be
  * others depending upon the RuleManager and Action involved.
+ * <p>
+ * This exception is not thrown <i>during</i> parsing; problems at that
+ * stage are represented by instances of ParseException.
  */
 
 public class InvalidRuleException extends DigestionException {
@@ -36,6 +39,5 @@
     public InvalidRuleException(String msg, Throwable t) {
         super(msg, t);
     }
-    
 }
 

Modified: 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/ParseException.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/ParseException.java?view=diff&r1=151696&r2=151697
==============================================================================
--- 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/ParseException.java
 (original)
+++ 
jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/ParseException.java
 Sun Feb  6 23:44:21 2005
@@ -1,6 +1,6 @@
-/* $Id: $
+/* $Id$
  *
- * Copyright 2001-2004 The Apache Software Foundation.
+ * Copyright 2001-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,6 +19,8 @@
 package org.apache.commons.digester2;
 
 /**
+ * An exception indicating that some problem occurred during parsing of
+ * the input xml.
  */
 
 public class ParseException extends DigestionException {
@@ -33,6 +35,5 @@
     public ParseException(String msg, Throwable t) {
         super(msg, t);
     }
-    
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to