jdk/src/jdk.jdi/share/classes/com/sun/jdi/request/InvalidRequestStateException.java
changeset 45564 0149773a140c
parent 34894 3248b89d1921
equal deleted inserted replaced
45563:ece4ae6beba3 45564:0149773a140c
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    34  *
    34  *
    35  * @author Robert Field
    35  * @author Robert Field
    36  * @since  1.3
    36  * @since  1.3
    37  */
    37  */
    38 public class InvalidRequestStateException extends RuntimeException {
    38 public class InvalidRequestStateException extends RuntimeException {
       
    39 
    39     private static final long serialVersionUID = -3774632428543322148L;
    40     private static final long serialVersionUID = -3774632428543322148L;
    40     public InvalidRequestStateException()
    41 
    41     {
    42     public InvalidRequestStateException() {
    42         super();
    43         super();
    43     }
    44     }
    44 
    45 
    45     public InvalidRequestStateException(String s)
    46     public InvalidRequestStateException(String s) {
    46     {
       
    47         super(s);
    47         super(s);
    48     }
    48     }
    49 }
    49 }