Notice
Recent Posts
Recent Comments
Link
설.현.아빠
try {} catch{} 사용 본문
try { // 필요한 코드 넣는 부분 이정도 해두면 다 잡을려나~~ㅋㅋ
} catch (Exception ex) {
Toast.makeText(EventPage.this, "Exception failed:"+ex.getMessage(), 4000);
} catch (StackOverflowError sof) {
Toast.makeText(EventPage.this, "StackOverflowError failed:"+sof.getMessage(), 4000);
} catch (Error e) {
Toast.makeText(EventPage.this, "Error failed:"+e.getMessage(), 4000);
} catch (Throwable t) {
Toast.makeText(EventPage.this, "Throwable failed:"+t.getMessage(), 4000);
}
'안드로이드 > Exception' 카테고리의 다른 글
[허니몬님자바강좌] 제 07 장 Exception(예외) 처리 (0) | 2011.02.11 |
---|---|
e.printStackTrace() (0) | 2011.02.11 |
Comments