| UnexpectedObjectException.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 UnexpectedObjectException
extends JAXRException
{
/** @since 4.0.2 */
static final long serialVersionUID = 2574981241743874017L;
public UnexpectedObjectException()
{
}
public UnexpectedObjectException(String msg)
{
super(msg);
}
public UnexpectedObjectException(String msg, Throwable cause)
{
super(msg, cause);
}
public UnexpectedObjectException(Throwable cause)
{
super(cause);
}
}
| UnexpectedObjectException.java |