2010-02-06から1日間の記事一覧

35. 例外定義

35. 例外定義 独自の例外を定義 l:\lesson087\test.java class test { public static void main(String args[]) { try { ThrowException(); } catch (Exception err) { System.out.println(err); } } static void ThrowException() throws MyException { thr…