36件ヒット
[1-36件を表示]
(0.081秒)
クラス
- Exception (24)
-
REXML
:: ParseException (12)
検索結果
-
REXML
:: ParseException # to _ s -> String (21102.0) -
例外情報を文字列化して返します。
例外情報を文字列化して返します。 -
Exception
# to _ s -> String (18102.0) -
エラーメッセージをあらわす文字列を返します。
エラーメッセージをあらわす文字列を返します。
//emlist[例][ruby]{
begin
1 + nil
rescue => e
p e.message #=> "nil can't be coerced into Fixnum"
end
//} -
Exception
# message -> String (3002.0) -
エラーメッセージをあらわす文字列を返します。
エラーメッセージをあらわす文字列を返します。
//emlist[例][ruby]{
begin
1 + nil
rescue => e
p e.message #=> "nil can't be coerced into Fixnum"
end
//}