3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 08:32:51 +02:00

Adjust exception catch slightly

Dieser Commit ist enthalten in:
dordsor21 2021-09-20 23:07:58 +01:00
Ursprung f8ed4e0c38
Commit 040edc8fd0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -141,7 +141,7 @@ public class RichPatternParser extends FaweParser<Pattern> {
List<String> args = entry.getValue(); List<String> args = entry.getValue();
try { try {
pattern = worldEdit.getPatternFactory().parseWithoutRich(full, context); pattern = worldEdit.getPatternFactory().parseWithoutRich(full, context);
} catch (SuggestInputParseException rethrow) { } catch (InputParseException rethrow) {
throw rethrow; throw rethrow;
} catch (Throwable e) { } catch (Throwable e) {
throw SuggestInputParseException.of(e, full, () -> { throw SuggestInputParseException.of(e, full, () -> {