アウトプットができる技術者に

it's a time to take a new step !

2013-10-09から1日間の記事一覧

例外チェーン chained exception

例外チェーンとは、例外にメッセージ追記 → throw してあげることです。 具体的にはこんな感じ。 try{ String a = null; a.trim(); } catch (NullPointerException nullEx) { Exception e = new Exception("完了処理メッセージの構築失敗"); e.initCause(nul…