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