| MBeanProxyCreationException.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.mx.util;
import javax.management.JMException;
/**
*
* @author <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
* @version $Revision: 1.1.28.1 $
*
*/
public class MBeanProxyCreationException
extends JMException
{
private static final long serialVersionUID = 1008637966352433381L;
// Constructors --------------------------------------------------
public MBeanProxyCreationException()
{
super();
}
public MBeanProxyCreationException(String msg)
{
super(msg);
}
}
| MBeanProxyCreationException.java |