src/java.base/share/classes/java/lang/IllegalMonitorStateException.java
changeset 58288 48e480e56aad
parent 57956 e0b8b019d2f5
child 58679 9c3209ff7550
child 59201 b24f4caa1411
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
    42 class IllegalMonitorStateException extends RuntimeException {
    42 class IllegalMonitorStateException extends RuntimeException {
    43     @java.io.Serial
    43     @java.io.Serial
    44     private static final long serialVersionUID = 3713306369498869069L;
    44     private static final long serialVersionUID = 3713306369498869069L;
    45 
    45 
    46     /**
    46     /**
    47      * Constructs an <code>IllegalMonitorStateException</code> with no
    47      * Constructs an {@code IllegalMonitorStateException} with no
    48      * detail message.
    48      * detail message.
    49      */
    49      */
    50     public IllegalMonitorStateException() {
    50     public IllegalMonitorStateException() {
    51         super();
    51         super();
    52     }
    52     }
    53 
    53 
    54     /**
    54     /**
    55      * Constructs an <code>IllegalMonitorStateException</code> with the
    55      * Constructs an {@code IllegalMonitorStateException} with the
    56      * specified detail message.
    56      * specified detail message.
    57      *
    57      *
    58      * @param   s   the detail message.
    58      * @param   s   the detail message.
    59      */
    59      */
    60     public IllegalMonitorStateException(String s) {
    60     public IllegalMonitorStateException(String s) {