1 11 package com.sun.jdi; 12 13 14 public class InternalException extends RuntimeException { 15 16 19 private static final long serialVersionUID = 1L; 20 21 public InternalException() { } 22 23 public InternalException(int errorCode) { 24 error = errorCode; 25 } 26 27 public InternalException(java.lang.String s) { 28 super(s); 29 } 30 31 public InternalException(java.lang.String s, int errorCode) { 32 super(s); 33 error = errorCode; 34 } 35 36 public int errorCode() { 37 return error; 38 } 39 40 private int error; 41 } 42 | Popular Tags |