package org.bygle.xml.exception; /** * @author Sandro De Leo sdeleo@regesta.com */ public class XMLException extends Exception { private static final long serialVersionUID = 943833695318819354L; /** * */ public XMLException() { super(); } /** * @param arg0 */ public XMLException(String arg0) { super(arg0); } }