EngineHub / EngineHub/CommandHelper
Provide `nocatch` keyword
Offen
feature request
good first issue
- Vorherrschende Sprache
- Java
- Sterne
- 128
- Forks
- 70
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
A `nocatch` block is a block which may throw an exception, which is ignored (except if scream-errors is on.)
```java
nocatch {
_codeThatThrowsAnException();
}
```
is compiled to
```java
try {
_codeThatThrowsAnException();
} catch(Exception @ex) {
// Ignored
}
```
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.