You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
889 B
55 lines
889 B
/*
|
|
* 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;
|
|
|
|
/**
|
|
* This exception is raised when there is no role info with given name in a
|
|
* given relation type.
|
|
*
|
|
* @since 1.5
|
|
*/
|
|
public class RoleInfoNotFoundException extends RelationException {
|
|
|
|
/* Serial version */
|
|
private static final long serialVersionUID = 4394092234999959939L;
|
|
|
|
/**
|
|
* Default constructor, no message put in exception.
|
|
*/
|
|
public RoleInfoNotFoundException() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructor with given message put in exception.
|
|
*
|
|
* @param message the detail message.
|
|
*/
|
|
public RoleInfoNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
}
|