Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Add option ImplicitExceptionWithoutStacktraceIsFatal.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhaeubl committed Feb 29, 2024
1 parent ea3e3c8 commit 4d321e6
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 49 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,9 @@ protected void onValueUpdate(EconomicMap<OptionKey<?>, Object> values, String ol
@Option(help = "Specifies the number of entries that diagnostic buffers have.", type = OptionType.Debug)//
public static final HostedOptionKey<Integer> DiagnosticBufferSize = new HostedOptionKey<>(30);

@Option(help = "Determines if implicit exceptions are fatal if they don't have a stack trace.", type = OptionType.Debug)//
public static final RuntimeOptionKey<Boolean> ImplicitExceptionWithoutStacktraceIsFatal = new RuntimeOptionKey<>(false);

@SuppressWarnings("unused")//
@APIOption(name = "configure-reflection-metadata")//
@Option(help = "Enable runtime instantiation of reflection objects for non-invoked methods.", type = OptionType.Expert, deprecated = true)//
Expand Down
Loading

0 comments on commit 4d321e6

Please sign in to comment.