●getCause() : Throwable을 return한다.
-사용 예시(ioe가 SQLRecoverableException의 발생했을 경우를 찾을 때)
catch(IOException ioe){
if(ioe.getCause() instanceof SQLRecoverableException){
//처리로직
}
'JAVA' 카테고리의 다른 글
executeBatch()메서드 (0) | 2019.08.23 |
---|---|
[JAVA]renameTo()메서드 (0) | 2019.08.09 |
[이클립스] 전체 파일 인코딩 한번에 변경하기 (0) | 2019.08.08 |
matches()메서드 (0) | 2019.08.07 |
System.in.read()의 중복 사용 (2) | 2019.08.07 |