KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > security > cert > CertificateEncodingException


1 /*
2  * @(#)CertificateEncodingException.java 1.8 04/02/16
3  *
4  * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7   
8 /*
9  * NOTE:
10  * Because of various external restrictions (i.e. US export
11  * regulations, etc.), the actual source code can not be provided
12  * at this time. This file represents the skeleton of the source
13  * file, so that javadocs of the API can be created.
14  */

15
16 package javax.security.cert;
17
18 /**
19  * Certificate Encoding Exception. This is thrown whenever an error
20  * occurs whilst attempting to encode a certificate.
21  *
22  * <p><em>Note: The classes in the package <code>javax.security.cert</code>
23  * exist for compatibility with earlier versions of the
24  * Java Secure Sockets Extension (JSSE). New applications should instead
25  * use the standard J2SE certificate classes located in
26  * <code>java.security.cert</code>.</em></p>
27  *
28  * @since 1.4
29  * @author Hemma Prafullchandra
30  * @version 1.7
31  */

32 public class CertificateEncodingException extends CertificateException
33 {
34
35     /**
36      * Constructs a CertificateEncodingException with no detail message. A
37      * detail message is a String that describes this particular
38      * exception.
39      */

40     public CertificateEncodingException() { }
41
42     /**
43      * Constructs a CertificateEncodingException with the specified detail
44      * message. A detail message is a String that describes this
45      * particular exception.
46      *
47      * @param message the detail message.
48      */

49     public CertificateEncodingException(String message) { }
50 }
51
Popular Tags