| IntrospectionException.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management;
/**
* Thrown when an error occurs introspecting an MBean.
*
* @author <a href="mailto:Adrian.Brock@HappeningTimes.com">Adrian Brock</a>
* @version $Revision: 1.3.30.1 $
*/
public class IntrospectionException
extends OperationsException
{
// Constants -----------------------------------------------------
private static final long serialVersionUID = 1054516935875481725L;
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
/**
* Construct a new IntrospectionException with no message.
*/
public IntrospectionException()
{
super();
}
/**
* Construct a new IntrospectionException with the given message.
*
* @param message the error message.
*/
public IntrospectionException(String message)
{
super(message);
}
}
| IntrospectionException.java |