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 * AdminDoesntExistException.java 16 * 17 * Created on den 28 mars 2002, 16:50 18 */ 19 package org.ejbca.ui.web.admin.configuration; 20 21 /** 22 * An exception thown when trying to change or remove a user that doesn't exists in the database. 23 * 24 * @author Philip Vendil 25 */ 26 public class AdminDoesntExistException extends java.lang.Exception { 27 /** 28 * Creates a new instance of <code>AdminDoesntExistException</code> without detail message. 29 */ 30 public AdminDoesntExistException() { 31 super(); 32 } 33 34 /** 35 * Constructs an instance of <code>AdminDoesntExistException</code> with the specified detail 36 * message. 37 * 38 * @param msg the detail message. 39 */ 40 public AdminDoesntExistException(String msg) { 41 super(msg); 42 } 43 } 44