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

Print this page

        

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

@@ -70,11 +70,11 @@
     public CRLException(String message, Throwable cause) {
         super(message, cause);
     }
 
     /**
-     * Creates a <code>CRLException</code> with the specified cause
+     * Creates a {@code CRLException} 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>).
      *
      * @param cause the cause (which is saved for later retrieval by the