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

/**
 * Exception to throw during CA creation when requested CA
 * (issuer DN) already exists.
 */
public class IssuerUnavailableException extends ECAException {

    private static final long serialVersionUID = -6247493607604418446L;

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

}