summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/ca/CANotLeafException.java
blob: eabca73641cd0f646167fb6b436aaa736e7139b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.netscape.certsrv.ca;

/**
 * Exception to throw when an operation cannot be performed because
 * the CA to which the operation pertains is not a leaf CA (ie, has
 * sub-CAs).
 */
public class CANotLeafException extends ECAException {

    private static final long serialVersionUID = -2729093578678941399L;

    public CANotLeafException(String msgFormat) {
        super(msgFormat);
    }

}