Exceptions

장석빈·2022년 6월 6일
0

Exception(예외객체)이란?

-메서드 내에서 오류가 발생하면 시스템에 던지는 객체
-메서드 호출 스택을 따라서 예외가 전될된다.

Exception 처리

-Catch

try{
	//Exception 발생구문
} catch(SomeException e){
	//SomeException이 발생할 때 처리
}finally {
	//Exception 발생여부와 상관없이 항상 처리
}

-Specify

public void writeList() throws SomeException {
	//SomeException을 발생하는 구문
}

Exception의 종류

-Checked Exceptions :

반드시 처리해야하는 Exceptions

-UnChecked Exceptions(Runtime Exceptions) :

Exceptions의 처리를 하지않아도 컴파일이 가능하다.

profile
회피형 인간의 개과천선기

0개의 댓글