aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/asn1/exceptions/InvalidCAException.java
blob: e48750904a9995f60e7a73ee332acbf40dc1c410 (plain)
1
2
3
4
5
6
7
8
9
10
package model.asn1.exceptions;

/**
 * Indicate the error that the CA being installed is invalid.
 */
public class InvalidCAException extends Exception {
    public InvalidCAException(String message) {
        super(message);
    }
}