This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch depr
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git


The following commit(s) were added to refs/heads/depr by this push:
     new 1831d05  [MSHARED-1274] Deprecate Xpp3Dom and related classes
1831d05 is described below

commit 1831d055372804ebfcc5d61cfa60950343cbe219
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Wed Jun 21 08:03:17 2023 -0400

    [MSHARED-1274] Deprecate Xpp3Dom and related classes
---
 .../maven/shared/utils/xml/pull/XmlPullParserException.java    | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/maven/shared/utils/xml/pull/XmlPullParserException.java
 
b/src/main/java/org/apache/maven/shared/utils/xml/pull/XmlPullParserException.java
index 5f495b1..cbfdd7d 100644
--- 
a/src/main/java/org/apache/maven/shared/utils/xml/pull/XmlPullParserException.java
+++ 
b/src/main/java/org/apache/maven/shared/utils/xml/pull/XmlPullParserException.java
@@ -22,26 +22,30 @@ import java.io.IOException;
 
 import org.xml.sax.SAXException;
 
+/**
+* @deprecated use org.w3c.dom, JDOM, XOM, or SAX 
+*/
+@Deprecated
 public class XmlPullParserException extends RuntimeException {
 
     private static final long serialVersionUID = 117075811816936575L;
 
     /**
-     * @param e IOException.
+     * @param e the root cause
      */
     public XmlPullParserException(IOException e) {
         super(e);
     }
 
     /**
-     * @param e The exception.
+     * @param e the root cause
      */
     public XmlPullParserException(SAXException e) {
         super(e);
     }
 
     /**
-     * @param message The message.
+     * @param message the message
      */
     public XmlPullParserException(String message) {
         super(message);

Reply via email to