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

/**
 * Exception to throw when an operation cannot be completed
 * because the CA is the wrong type (e.g., an operation that
 * only applies to lightweight CAs).
 */
public class CATypeException extends ECAException {

    private static final long serialVersionUID = -6004456461295692150L;

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

}