We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05231f5 commit f16d02dCopy full SHA for f16d02d
src/vm/jvm/runtime/org/perl6/nqp/sixmodel/reprs/VMExceptionInstance.java
@@ -1,12 +1,13 @@
1
package org.perl6.nqp.sixmodel.reprs;
2
3
import org.perl6.nqp.runtime.CallFrame;
4
+import org.perl6.nqp.runtime.ExceptionHandling;
5
import org.perl6.nqp.sixmodel.SixModelObject;
6
7
public class VMExceptionInstance extends SixModelObject {
8
public String message;
9
public SixModelObject payload;
- public long category;
10
+ public long category = ExceptionHandling.EX_CAT_CATCH;
11
public boolean resumable;
12
public CallFrame origin;
13
public StackTraceElement[] nativeTrace;
0 commit comments