EngineHub / EngineHub/CommandHelper
Provide `nocatch` keyword
オープン
feature request
good first issue
- 主要言語
- Java
- スター
- 128
- フォーク
- 70
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
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
}
```
コントリビューションガイド
評価
この issue はまだ評価されていません。