< prev index next >

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

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


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  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 there is an inconistency in the debug
  30  * information provided by the target VM. For example, this exception
  31  * is thrown if there is a type mismatch between a retrieved value's
  32  * runtime type and its declared type as reported by the target VM.
  33  *
  34  * @author Gordon Hirsch
  35  * @since  1.3
  36  */
  37 public class InconsistentDebugInfoException extends RuntimeException {

  38     private static final long serialVersionUID = 7964236415376861808L;

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


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  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 there is an inconistency in the debug
  30  * information provided by the target VM. For example, this exception
  31  * is thrown if there is a type mismatch between a retrieved value's
  32  * runtime type and its declared type as reported by the target VM.
  33  *
  34  * @author Gordon Hirsch
  35  * @since  1.3
  36  */
  37 public class InconsistentDebugInfoException extends RuntimeException {
  38 
  39     private static final long serialVersionUID = 7964236415376861808L;
  40 
  41     public InconsistentDebugInfoException() {
  42         super();
  43     }
  44 
  45     public InconsistentDebugInfoException(String s) {
  46         super(s);
  47     }
  48 }
< prev index next >