1 /* 2 * @(#)InvalidRoleInfoException.java 1.15 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.management.relation; 9 10 /** 11 * This exception is raised when, in a role info, its minimum degree is greater 12 * than its maximum degree. 13 * 14 * @since 1.5 15 */ 16 public class InvalidRoleInfoException extends RelationException { 17 18 /* Serial version */ 19 private static final long serialVersionUID = 7517834705158932074L; 20 21 /** 22 * Default constructor, no message put in exception. 23 */ 24 public InvalidRoleInfoException() { 25 super(); 26 } 27 28 /** 29 * Constructor with given message put in exception. 30 * 31 * @param message the detail message. 32 */ 33 public InvalidRoleInfoException(String message) { 34 super(message); 35 } 36 } 37