1 /************************************************************************* 2 * * 3 * EJBCA: The OpenSource Certificate Authority * 4 * * 5 * This software is free software; you can redistribute it and/or * 6 * modify it under the terms of the GNU Lesser General Public * 7 * License as published by the Free Software Foundation; either * 8 * version 2.1 of the License, or any later version. * 9 * * 10 * See terms of license at gnu.org. * 11 * * 12 *************************************************************************/ 13 14 /* 15 * EndEntityProfileExistsException.java 16 * 17 * Created on 12 april 2002, 11:27 18 */ 19 package org.ejbca.core.model.ra.raadmin; 20 21 /** 22 * An exception thrown when someone tries to add a profile that already exits 23 * 24 * @author Philip Vendil 25 */ 26 public class EndEntityProfileExistsException extends java.lang.Exception { 27 /** 28 * Creates a new instance of <code>EndEntityProfileExistsException</code> without detail 29 * message. 30 */ 31 public EndEntityProfileExistsException() { 32 super(); 33 } 34 35 /** 36 * Constructs an instance of <code>EndEntityProfileExistsException</code> with the specified 37 * detail message. 38 * 39 * @param msg the detail message. 40 */ 41 public EndEntityProfileExistsException(String msg) { 42 super(msg); 43 } 44 } 45