/* * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management.relation; /** * Invalid relation type. * This exception is raised when, in a relation type, there is already a * relation type with that name, or the same name has been used for two * different role infos, or no role info provided, or one null role info * provided. * * @since 1.5 */ public class InvalidRelationTypeException extends RelationException { /* Serial version */ private static final long serialVersionUID = 3007446608299169961L; /** * Default constructor, no message put in exception. */ public InvalidRelationTypeException() { super(); } /** * Constructor with given message put in exception. * * @param message the detail message. */ public InvalidRelationTypeException(String message) { super(message); } }