blob: 178857f803f7fa896cce01d28a4dee31b64bfa6d (
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 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);
}
public CAMissingKeyException(String msgFormat, Exception cause) {
super(msgFormat, cause);
}
}
|