| SaveException.java |
/*
* JBoss, the OpenSource EJB server
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.xml.registry;
/**
* @author Scott.Stark@jboss.org
* @version $Revision: 1.1.6.1 $
*/
public class SaveException
extends RegistryException
{
/** @since 4.0.2 */
static final long serialVersionUID = 2049281746282675377L;
public SaveException()
{
}
public SaveException(String msg)
{
this(msg, null);
}
public SaveException(String msg, Throwable cause)
{
super(msg, cause);
}
public SaveException(Throwable cause)
{
super(cause);
}
}
| SaveException.java |