에러 vs 예외 8장 #104
Unanswered
kyungjunleeme
asked this question in
Q&A
에러 vs 예외 8장
#104
Replies: 1 comment
-
개념 정의에 따르면... 음 오류는 심각한 문제를 의미하긴 하는데... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
street coder라는 책 읽다가.. 관점이 특이했는데, 보완 예정
오류(Error)는 시스템이 종료되어야 할 수준의 상황과 같이 수습할 수 없는 심각한 문제를 의미합니다. 개발자가 미리 예측하여 방지할 수 없습니다.
반면
예외(Exception)는 개발자가 구현한 로직에서 발생한 실수나 사용자의 영향에 의해 발생합니다. 오류와 달리 개발자가 미리 예측하여 방지할 수 있기에 상황에 맞는 예외처리(Exception Handle)를 해야합니다.
cf)
Beta Was this translation helpful? Give feedback.
All reactions