1 28 29 package net.n3.nanoxml; 30 31 37 public class XMLParseException extends XMLException 38 { 39 40 43 private static final long serialVersionUID = 3976739155453555000L; 44 45 50 public XMLParseException(String msg) 51 { 52 super(msg); 53 } 54 55 62 public XMLParseException(String systemID, int lineNr, String msg) 63 { 64 super(systemID, lineNr, null, msg, true); 65 } 66 67 } 68 | Popular Tags |