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); } }