aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/java/security/SignatureException.java
diff options
context:
space:
mode:
authorjuh <none@none>2013-06-28 10:48:02 -0700
committerjuh <none@none>2013-06-28 10:48:02 -0700
commit699337b87c072c8cb9b9e3fef396cdbf4ec657f2 (patch)
tree8a41c1f4f2b9e2cef344b747f9463222f18f47b8 /src/share/classes/java/security/SignatureException.java
parent2847c2816238f145acb4c4a98df9c509c2e164f3 (diff)
downloadjdk8u_jdk-699337b87c072c8cb9b9e3fef396cdbf4ec657f2.tar.gz
8019360: Cleanup of the javadoc <code> tag in java.security.*
Summary: Convert to {@code ...} tags. convert package.html to package-info.java. Reviewed-by: darcy
Diffstat (limited to 'src/share/classes/java/security/SignatureException.java')
-rw-r--r--src/share/classes/java/security/SignatureException.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/share/classes/java/security/SignatureException.java b/src/share/classes/java/security/SignatureException.java
index c47de3124b..2e1fa592f6 100644
--- a/src/share/classes/java/security/SignatureException.java
+++ b/src/share/classes/java/security/SignatureException.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2003, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -56,13 +56,13 @@ public class SignatureException extends GeneralSecurityException {
}
/**
- * Creates a <code>SignatureException</code> with the specified
+ * Creates a {@code SignatureException} with the specified
* detail message and cause.
*
* @param message the detail message (which is saved for later retrieval
* by the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
- * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
+ * {@link #getCause()} method). (A {@code null} value is permitted,
* and indicates that the cause is nonexistent or unknown.)
* @since 1.5
*/
@@ -71,13 +71,13 @@ public class SignatureException extends GeneralSecurityException {
}
/**
- * Creates a <code>SignatureException</code> with the specified cause
- * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
+ * Creates a {@code SignatureException} with the specified cause
+ * and a detail message of {@code (cause==null ? null : cause.toString())}
* (which typically contains the class and detail message of
- * <tt>cause</tt>).
+ * {@code cause}).
*
* @param cause the cause (which is saved for later retrieval by the
- * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
+ * {@link #getCause()} method). (A {@code null} value is permitted,
* and indicates that the cause is nonexistent or unknown.)
* @since 1.5
*/