YooYoungmo / AEP

1 stars 1 forks source link

Clean Code - 미확인 예외(Unchecked Exception)를 사용하라. #42

Closed YooYoungmo closed 7 years ago

YooYoungmo commented 7 years ago

Java 공식 문서(Unchecked Exceptions — The Controversy)에서 발췌

Here's the bottom line guideline: If a client can reasonably be expected to recover from an exception, make it a checked exception. If a client cannot do anything to recover from the exception, make it an unchecked exception. - https://docs.oracle.com/javase/tutorial/essential/exceptions/runtime.html