ランタイムエラー時にスタックトレースを出力する
catch節に追加するかまたはwhereに追加する
catch節の構文を変更する 今までは、 catch( class, message, where) だったのだが、 catch( exception ) に変更し、exception を { class, message, where at, where in } とする、 where at は例外が発生した述語を、where inはスタックトレースを入れる。
catch節に追加するかまたはwhereに追加する