/* JFox, the OpenSource J2EE Application Server
*
* Copyright (C) 2002 huihoo.org
* Distributable under GNU LGPL license
* See the GNU Lesser General Public License for more details.
*/
package javax.management.relation;
/**
* This exception is raised when there is no relation type with given name in
* Relation Service
*
* @author <a href="mailto:young_yy@hotmail.org">Young Yang</a>
*/
public class RelationTypeNotFoundException extends RelationException {
/**
* Default constructor, no message put in exception
*/
public RelationTypeNotFoundException() {
super();
}
/**
* Constructor with given message put in exception
*/
public RelationTypeNotFoundException(String message) {
super(message);
}
}
|