blob: f6ce9087d1715e54ca3db5c60cae5a7c6b02a718 [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import com.sun.jdi.connect.*;
import com.sun.jdi.event.*;
import com.sun.jdi.request.*;
public class InternalException extends RuntimeException
{
public InternalException() { }
public InternalException(int errorCode) {
error = errorCode;
}
public InternalException(java.lang.String s) {
super(s);
}
public InternalException(java.lang.String s, int errorCode) {
super(s);
error = errorCode;
}
public int errorCode() { return error; }
private int error;
}