summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/ca/CAMissingCertException.java
blob: 49c5063f2a79a6fa2f977054dd2363e128c80d8f (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 certificate is not
 * (yet) present in the local NSSDB.
 */
public class CAMissingCertException extends ECAException {

    private static final long serialVersionUID = 7261805480088539689L;

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

}