Skip to content

Commit

Permalink
Flip values in VMException back
Browse files Browse the repository at this point in the history
  • Loading branch information
xxDark committed Apr 30, 2022
1 parent ab9806a commit 8a4af78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/xdark/ssvm/execution/VMException.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public final class VMException extends RuntimeException {
* Throwable oop.
*/
public VMException(String message, InstanceValue oop) {
super(message, null, true, true);
super(message, null, false, false);
this.oop = oop;
}

Expand Down

0 comments on commit 8a4af78

Please sign in to comment.