1 13 14 package org.ejbca.core.model.ca.caadmin; 15 16 import org.ejbca.core.EjbcaException; 17 18 19 25 public class CADoesntExistsException extends EjbcaException { 26 27 30 public CADoesntExistsException() { 31 super(); 32 } 33 34 38 public CADoesntExistsException(String msg) { 39 super(msg); 40 } 41 42 46 public CADoesntExistsException(Exception e) { 47 super(e); 48 } 49 } 50 | Popular Tags |