Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

try {} catch{} 사용 본문

안드로이드/Exception

try {} catch{} 사용

설.현.아빠 2011. 2. 11. 10:15



            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