Exception: RSS::NotSetError
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#variables ⇒ Object
readonly
Returns the value of attribute variables.
Instance Method Summary collapse
-
#initialize(name, variables) ⇒ NotSetError
constructor
A new instance of NotSetError.
Constructor Details
#initialize(name, variables) ⇒ NotSetError
Returns a new instance of NotSetError.
133 134 135 136 137 |
# File 'lib/rss/rss.rb', line 133 def initialize(name, variables) @name = name @variables = variables super("required variables of #{@name} are not set: #{@variables.join(', ')}") end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
132 133 134 |
# File 'lib/rss/rss.rb', line 132 def name @name end |
#variables ⇒ Object (readonly)
Returns the value of attribute variables.
132 133 134 |
# File 'lib/rss/rss.rb', line 132 def variables @variables end |