EngineHub / EngineHub/CommandHelper
Provide `nocatch` keyword
Ouverte
feature request
good first issue
- Langage dominant
- Java
- Étoiles
- 128
- Forks
- 70
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
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
}
```
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.