KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ra > raadmin > UserDoesntFullfillEndEntityProfile


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  * UserDoesntFullfillEndEntityProfile.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 or edit a profile that doesnt match its end entity
23  * profile.
24  *
25  * @author Philip Vendil
26  */

27 public class UserDoesntFullfillEndEntityProfile extends java.lang.Exception JavaDoc {
28     /**
29      * Creates a new instance of <code>UserDoesntFullfillProfile</code> without detail message.
30      */

31     public UserDoesntFullfillEndEntityProfile() {
32         super();
33     }
34
35     /**
36      * Constructs an instance of <code>UserDoesntFullfillProfile</code> with the specified detail
37      * message.
38      *
39      * @param msg the detail message.
40      */

41     public UserDoesntFullfillEndEntityProfile(String JavaDoc msg) {
42         super(msg);
43     }
44 }
45
Popular Tags