| RelationNotFoundException.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.relation;
import org.jboss.util.id.SerialVersion;
/**
* Thrown when there is no relation for a passed relation id.
*
* @author <a href="mailto:Adrian.Brock@HappeningTimes.com">Adrian Brock</a>
* @version $Revision: 1.1.30.4 $
*/
public class RelationNotFoundException
extends RelationException
{
// Constants -----------------------------------------------------
/** @since 4.0.1 */
private static final long serialVersionUID = -3793951411158559116L;
// Attributes ----------------------------------------------------
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
/**
* Construct a new RelationNotFoundException with no message.
*/
public RelationNotFoundException()
{
super();
}
/**
* Construct a new RelationNotFoundException with the given message.
*
* @param message the error message.
*/
public RelationNotFoundException(String message)
{
super(message);
}
}
| RelationNotFoundException.java |