Update translation (#25780)

This commit is contained in:
Emily Gong
2019-01-03 10:01:23 -08:00
committed by Jingyi Ding
parent f2cd7fe288
commit 48670347b9

View File

@ -10,13 +10,13 @@ localeTitle: 最后
```java
try {
// Normal execution path
// 正常代码执行
throw new EmptyStackException();
} catch (ExampleException ee) {
// deal with the ExampleException
// ExampleException 进行处理
} finally {
// This optional section is executed upon termination of any of the try or catch blocks above,
// except when System.exit() is called in "try" or "catch" blocks;
// 这块不是必须有的在以上try或catch执行完最后就会执行,
// 除非在"try" 或 "catch" 块有 System.exit();
}
```