package org.crosswire.xml; /** * Copyright (c) 2001 CrossWire Bible Society. * Distributable under the terms of the GNU GPL V2. */ public class XMLParseException extends Exception { public XMLParseException() { super(); } public XMLParseException(String s) { super(s); } }