All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.configuration.io.xml.XmlPullParserException Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.configuration.io.xml;

/**
 * This exception is thrown to signal XML Pull Parser related faults.
 *
 * @author Aleksander Slominski
 */
public class XmlPullParserException extends RuntimeException {
   protected Throwable detail;
   protected int row = -1;
   protected int column = -1;

   public XmlPullParserException(String s) {
      super(s);
   }

   public XmlPullParserException(String msg, XmlPullParser parser, Throwable chain) {
      super((msg == null ? "" : msg + " ")
            + (parser == null ? "" : "(position:" + parser.getPositionDescription() + ") ")
            + (chain == null ? "" : "caused by: " + chain));

      if (parser != null) {
         this.row = parser.getLineNumber();
         this.column = parser.getColumnNumber();
      }
      this.detail = chain;
   }

   public Throwable getDetail() {
      return detail;
   }

   public int getLineNumber() {
      return row;
   }

   public int getColumnNumber() {
      return column;
   }

   public void printStackTrace() {
      if (detail == null) {
         super.printStackTrace();
      } else {
         synchronized (System.err) {
            System.err.println(super.getMessage() + "; nested exception is:");
            detail.printStackTrace();
         }
      }
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy