Mozilla/mozilla/nav-java/stubs/classes/netscape/security/ForbiddenTargetException.java
warren%netscape.com b5a5fc2ebe Added dummy privilege manager classes.
git-svn-id: svn://10.0.0.236/trunk@6908 18797224-902f-48f8-a5cc-f745e15eee43
1998-07-31 00:14:18 +00:00

29 lines
753 B
Java
Executable File

package netscape.security;
import java.lang.RuntimeException;
/**
* This exception is thrown when a privilege request is denied.
* @see netscape.security.PrivilegeManager
*/
public
class ForbiddenTargetException extends java.lang.RuntimeException {
/**
* Constructs an IllegalArgumentException with no detail message.
* A detail message is a String that describes this particular exception.
*/
public ForbiddenTargetException() {
super();
}
/**
* Constructs an ForbiddenTargetException with the specified detail message.
* A detail message is a String that describes this particular exception.
* @param s the detail message
*/
public ForbiddenTargetException(String s) {
super(s);
}
}