KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > ca > certextensions > CertificateExtentionConfigurationException


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 package org.ejbca.core.model.ca.certextensions;
15
16 /**
17  * Execption thrown of advanced certificate extensions
18  * when it is configured with bad propeties.
19  *
20  *
21  * @author Philip Vendil 2007 jan 5
22  *
23  * @version $Id: CertificateExtentionConfigurationException.java,v 1.1 2007/01/09 16:47:19 herrvendil Exp $
24  */

25
26 public class CertificateExtentionConfigurationException extends Exception JavaDoc {
27
28     /**
29      * Execption thrown of advanced certificate extensions
30      * when it is configured with bad propeties.
31      */

32     public CertificateExtentionConfigurationException(String JavaDoc message, Throwable JavaDoc throwable) {
33         super(message, throwable);
34     }
35
36     /**
37      * Execption thrown of advanced certificate extensions
38      * when it is configured with bad propeties.
39      */

40     public CertificateExtentionConfigurationException(String JavaDoc message) {
41         super(message);
42     }
43
44 }
45
Popular Tags