redo the error handling due to the changes in DebugStackState made by James
This commit is contained in:
9
src/main/java/lua/debug/VMException.java
Normal file
9
src/main/java/lua/debug/VMException.java
Normal 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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user