< prev index next >

src/java.smartcardio/share/classes/javax/smartcardio/CardException.java

Print this page

        

@@ -46,11 +46,11 @@
         super(message);
     }
 
     /**
      * Constructs a new CardException with the specified cause and a detail message
-     * of <code>(cause==null ? null : cause.toString())</code>.
+     * of {@code (cause==null ? null : cause.toString())}.
      *
      * @param cause the cause of this exception or null
      */
     public CardException(Throwable cause) {
         super(cause);
< prev index next >