summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/ca/CANotFoundException.java
blob: f292077ece3089d398ad0cf3a008b7e5218a6bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.netscape.certsrv.ca;

/**
 * Exception to throw when a (sub-)CA cannot be found.
 */
public class CANotFoundException extends ECAException {

    private static final long serialVersionUID = -4618887355685066120L;

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

}