diff options
Diffstat (limited to 'libjava/java/security/cert/CertificateException.java')
-rw-r--r-- | libjava/java/security/cert/CertificateException.java | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/libjava/java/security/cert/CertificateException.java b/libjava/java/security/cert/CertificateException.java index a3647ca..d833834 100644 --- a/libjava/java/security/cert/CertificateException.java +++ b/libjava/java/security/cert/CertificateException.java @@ -1,5 +1,5 @@ -/* CertificateException.java --- Certificate Exception - Copyright (C) 1999 Free Software Foundation, Inc. +/* CertificateException.java -- Certificate Exception + Copyright (C) 1999, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -37,34 +37,38 @@ exception statement from your version. */ package java.security.cert; + import java.security.GeneralSecurityException; /** - Exception for a Certificate. - - @since JDK 1.2 - - @author Mark Benvenuto -*/ + * Exception for a Certificate. + * + * @author Mark Benvenuto + * @see Certificate + * @since 1.2 + * @status updated to 1.4 + */ public class CertificateException extends GeneralSecurityException { + /** + * Compatible with JDK 1.2+. + */ + private static final long serialVersionUID = 3192535253797119798L; /** - Constructs an CertificateException without a message string. - */ + * Constructs an exception without a message string. + */ public CertificateException() { - super(); } /** - Constructs an CertificateException with a message string. - - @param msg A message to display with exception - */ + * Constructs an exception with a message string. + * + * @param msg a message to display with exception + */ public CertificateException(String msg) { - super( msg ); + super(msg); } - } |