redo the error handling due to the changes in DebugStackState made by James

This commit is contained in:
Shu Lei
2007-10-25 00:11:23 +00:00
parent 72c01f76c0
commit abf34c460d
3 changed files with 28 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
package lua.debug;
public class VMException extends RuntimeException {
private static final long serialVersionUID = 7876955153693775429L;
public VMException(Exception e) {
super(e.getMessage());
}
}