blob: e36364771931b7d75c9d9f0ea38b309dba05f1c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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);
}
public CAMissingCertException(String msgFormat, Exception cause) {
super(msgFormat, cause);
}
}
|