1 19 20 package org.netbeans.modules.web.jsf; 21 22 import org.xml.sax.SAXParseException ; 23 24 29 public class SAXParseError { 30 31 private SAXParseException exception; 32 33 34 public SAXParseError(SAXParseException e) { 35 exception=e; 36 } 37 public SAXParseException getException(){return exception;} 38 public int getErrorLine(){return exception.getLineNumber();} 39 public int getErrorColumn(){return exception.getColumnNumber();} 40 public String getErrorText(){return exception.getMessage();} 41 } 42 | Popular Tags |