Skip to content

Commit

Permalink
Add original exception to this bug raise.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Jan 17, 2017
1 parent ccb93ae commit 9aad929
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public class ManyVarsDynamicScope extends DynamicScope {
.findConstructor(ManyVarsDynamicScope.class, MethodType.methodType(void.class, StaticScope.class, DynamicScope.class))
.asType(MethodType.methodType(DynamicScope.class, StaticScope.class, DynamicScope.class));
} catch (Exception e) {
throw new RuntimeException("BUG: could not initialize constructor handle");
throw new RuntimeException("BUG: could not initialize constructor handle", e);
}
}

Expand Down

0 comments on commit 9aad929

Please sign in to comment.