aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/cert/CRLException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/security/cert/CRLException.java')
-rw-r--r--libjava/java/security/cert/CRLException.java37
1 files changed, 20 insertions, 17 deletions
diff --git a/libjava/java/security/cert/CRLException.java b/libjava/java/security/cert/CRLException.java
index 7aee1fb..be20d1b 100644
--- a/libjava/java/security/cert/CRLException.java
+++ b/libjava/java/security/cert/CRLException.java
@@ -1,5 +1,5 @@
-/* CRLException.java --- Certificate Revocation List Exception
- Copyright (C) 1999 Free Software Foundation, Inc.
+/* CRLException.java -- Certificate Revocation List 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,37 @@ exception statement from your version. */
package java.security.cert;
+
import java.security.GeneralSecurityException;
/**
- Exception for a Certificate Revocation List.
-
- @since JDK 1.2
-
- @author Mark Benvenuto
+ * Exception for a Certificate Revocation List.
+ *
+ * @author Mark Benvenuto
+ * @since 1.2
+ * @status updated to 1.4
*/
public class CRLException extends GeneralSecurityException
{
+ /**
+ * Compatible with JDK 1.2+.
+ */
+ private static final long serialVersionUID = -6694728944094197147L;
/**
- Constructs an CRLExceptionwithout a message string.
- */
+ * Constructs an CRLExceptionwithout a message string.
+ */
public CRLException()
{
- super();
}
/**
- Constructs an CRLException with a message string.
-
- @param msg A message to display with exception
- */
+ * Constructs an CRLException with a message string.
+ *
+ * @param msg a message to display with exception
+ */
public CRLException(String msg)
{
- super( msg );
+ super(msg);
}
-
}