XElementException.java |
/* * JBossMQ, the OpenSource JMS implementation * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.mq.xml; /** * XMLObjectException is used to signal errors occuring inside of an XMLObject. * * @author Hiram Chirino (Cojonudo14@hotmail.com) * @created August 16, 2001 * @version $Revision: 1.4.6.1 $ */ public class XElementException extends Exception { /** The serialVersionUID */ private static final long serialVersionUID = -1052528638103896076L; public XElementException() { super(); } public XElementException(String s) { super(s); } }
XElementException.java |