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

/**
 * Exception to throw when a (sub-)CA cannot perform an operation
 * because it is disabled.
 */
public class CADisabledException extends ECAException {

    private static final long serialVersionUID = -8827509070155037699L;

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

}