< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/InvalidLineNumberException.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi;
  27 
  28 /**
  29  * Thrown to indicate that the requested operation cannot be
  30  * completed because the specified line number is not valid.
  31  *
  32  * @deprecated This exception is no longer thrown
  33  *
  34  * @author Gordon Hirsch
  35  * @since  1.3
  36  */
  37 @Deprecated
  38 public class InvalidLineNumberException extends RuntimeException {

  39     private static final long serialVersionUID = 4048709912372692875L;

  40     public InvalidLineNumberException() {
  41         super();
  42     }
  43 
  44     public InvalidLineNumberException(String s) {
  45         super(s);
  46     }
  47 }


  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi;
  27 
  28 /**
  29  * Thrown to indicate that the requested operation cannot be
  30  * completed because the specified line number is not valid.
  31  *
  32  * @deprecated This exception is no longer thrown
  33  *
  34  * @author Gordon Hirsch
  35  * @since  1.3
  36  */
  37 @Deprecated
  38 public class InvalidLineNumberException extends RuntimeException {
  39 
  40     private static final long serialVersionUID = 4048709912372692875L;
  41 
  42     public InvalidLineNumberException() {
  43         super();
  44     }
  45 
  46     public InvalidLineNumberException(String s) {
  47         super(s);
  48     }
  49 }
< prev index next >