summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/ca/CAMissingKeyException.java
blob: 8f5e1e72a3cdb31b1f12985d9e52371277901ae1 (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's signing key is not (yet)
 * present in the local NSSDB.
 */
public class CAMissingKeyException extends ECAException {

    private static final long serialVersionUID = -364157165997677925L;

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

}