【例外の対応】 例外をどのように記述するかの検討 案としては try{ hoge.exe(); faile(); }catch(SomeException e){ } で、例外を投げるようにする。 例外を投げたくないときは public void testExcep throws Exception とさせる。