目錄表

, ,

Effective Java - Favor the use of standard exceptions

Introduction

與之前Favor the use of standard functional interfaces強調概念類似,盡量reuse現有東西。書中的範例主要都是針對unchecked exception,去說明適用情境:

最後就是這個item也有提到不要直接使用Exception、Throwable、RuntimeException或Error,我認為其實是要呼應Item 73: Throw exceptions appropriate to the abstraction

Note

Effective Java第三版Item 72。

Reference