src/share/classes/java/security/cert/CertificateEncodingException.java

Print this page

        

@@ -54,11 +54,11 @@
     public CertificateEncodingException(String message) {
         super(message);
     }
 
     /**
-     * Creates a <code>CertificateEncodingException</code> with the specified
+     * Creates a {@code CertificateEncodingException} 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

@@ -69,11 +69,11 @@
     public CertificateEncodingException(String message, Throwable cause) {
         super(message, cause);
     }
 
     /**
-     * Creates a <code>CertificateEncodingException</code>
+     * Creates a {@code CertificateEncodingException}
      * with the specified cause and a detail message of
      * <tt>(cause==null ? null : cause.toString())</tt>
      * (which typically contains the class and detail message of
      * <tt>cause</tt>).
      *