src/java.base/share/classes/java/lang/InterruptedException.java
changeset 58288 48e480e56aad
parent 57956 e0b8b019d2f5
child 58679 9c3209ff7550
child 59201 b24f4caa1411
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
    50 class InterruptedException extends Exception {
    50 class InterruptedException extends Exception {
    51     @java.io.Serial
    51     @java.io.Serial
    52     private static final long serialVersionUID = 6700697376100628473L;
    52     private static final long serialVersionUID = 6700697376100628473L;
    53 
    53 
    54     /**
    54     /**
    55      * Constructs an <code>InterruptedException</code> with no detail  message.
    55      * Constructs an {@code InterruptedException} with no detail  message.
    56      */
    56      */
    57     public InterruptedException() {
    57     public InterruptedException() {
    58         super();
    58         super();
    59     }
    59     }
    60 
    60 
    61     /**
    61     /**
    62      * Constructs an <code>InterruptedException</code> with the
    62      * Constructs an {@code InterruptedException} with the
    63      * specified detail message.
    63      * specified detail message.
    64      *
    64      *
    65      * @param   s   the detail message.
    65      * @param   s   the detail message.
    66      */
    66      */
    67     public InterruptedException(String s) {
    67     public InterruptedException(String s) {