summaryrefslogtreecommitdiffstats
path: root/khtml/java/netscape/security/ForbiddenTargetException.java
blob: 27879d05ba67b4426ac376d352ce8cec30db6b6f (plain)
1
2
3
4
5
6
7
8
9
10
package netscape.security;
public class ForbiddenTargetException extends RuntimeException {
    public ForbiddenTargetException()
    {
    }
    public ForbiddenTargetException(String message)
    {
        super(message);
    }
}