EngineHub / EngineHub/CommandHelper
Provide `nocatch` keyword
Đang mở
feature request
good first issue
- Ngôn ngữ chính
- Java
- Star
- 128
- Fork
- 70
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
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
}
```
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.