diff options
Diffstat (limited to 'libjava/java/security/cert/CertificateExpiredException.java')
-rw-r--r-- | libjava/java/security/cert/CertificateExpiredException.java | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/libjava/java/security/cert/CertificateExpiredException.java b/libjava/java/security/cert/CertificateExpiredException.java index d3f322a..6d23508 100644 --- a/libjava/java/security/cert/CertificateExpiredException.java +++ b/libjava/java/security/cert/CertificateExpiredException.java @@ -1,5 +1,5 @@ /* CertificateExpiredException.java --- Certificate Expired Exception - Copyright (C) 1999 Free Software Foundation, Inc. + 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 @@ -39,31 +39,33 @@ exception statement from your version. */ package java.security.cert; /** - Exception for a Certificate Expiring. - - @since JDK 1.2 - - @author Mark Benvenuto -*/ + * Exception for a Certificate Expiring. + * + * @author Mark Benvenuto + * @since 1.2 + * @status updated to 1.4 + */ public class CertificateExpiredException extends CertificateException { + /** + * Compatible with JDK 1.2+. + */ + private static final long serialVersionUID = 9071001339691533771L; /** - Constructs an CertificateExpiredException without a message string. - */ + * Constructs an exception without a message string. + */ public CertificateExpiredException() { - super(); } /** - Constructs an CertificateExpiredException 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 CertificateExpiredException(String msg) { - super( msg ); + super(msg); } - } |