EngineHub / EngineHub/CommandHelper
Provide `nocatch` keyword
Abierto
feature request
good first issue
- Lenguaje dominante
- Java
- Estrellas
- 128
- Forks
- 70
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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
}
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.