instance method Exception#exception

exception -> self[permalink][rdoc][edit]
exception(error_message) -> Exception

引数を指定しない場合は self を返します。引数を指定した場合 自身のコピーを生成し Exception#message 属性を error_message にして返します。

Kernel.#raise は、実質的に、例外オブジェクトの exception メソッドの呼び出しです。

[PARAM] error_message:
エラーメッセージを表す文字列を指定します。


begin
  # ...        # 何か処理
rescue => e
  raise e.exception("an error occurs during hogehoge process")  # 詳しいエラーメッセージ
end