Class: Meteor::Exception::NoSuchElementException
- Inherits:
-
Object
- Object
- Meteor::Exception::NoSuchElementException
- Defined in:
- lib/meteor.rb
Overview
Element Search Exception (要素検索例外)
Instance Attribute Summary (collapse)
-
- (Object) message
- String
-
message (メッセージ).
Instance Method Summary (collapse)
-
- (NoSuchElementException) initialize(*args)
constructor
initializer (イニシャライザ).
Constructor Details
- (NoSuchElementException) initialize(elm_name) - (NoSuchElementException) initialize(attr_name, attr_value) - (NoSuchElementException) initialize(elm_name, attr_name, attr_value) - (NoSuchElementException) initialize(attr_name1, attr_value1, attr_name2, attr_value2) - (NoSuchElementException) initialize(elm_name, attr_name1, attr_value1, attr_name2, attr_value2)
initializer (イニシャライザ)
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 |
# File 'lib/meteor.rb', line 1079 def initialize(*args) case args.length when ONE initialize_1(args[0]) when TWO initialize_2(args[0], args[1]) when THREE initialize_3(args[0], args[1], args[2]) when FOUR initialize_4(args[0], args[1], args[2], args[3]) when FIVE initialize_5(args[0], args[1], args[2], args[3], args[4]) end end |
Instance Attribute Details
- (Object) message
- String
-
message (メッセージ)
1054 1055 1056 |
# File 'lib/meteor.rb', line 1054 def @message end |