summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/ca/CAEnabledException.java
blob: 4c85276f3bf71bb640a3468f4ed4be4a6aa0180c (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 an operation cannot be performed because
 * the CA to which the operation pertains is enabled.
 */
public class CAEnabledException extends ECAException {

    private static final long serialVersionUID = 1056602856006912665L;

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

}