Exception: RSS::MissingTagError

Inherits:
InvalidRSSError show all
Defined in:
lib/rss/rss.rb

Overview

Raised if no matching tag is found.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tag, parent) ⇒ MissingTagError

Returns a new instance of MissingTagError.



78
79
80
81
# File 'lib/rss/rss.rb', line 78

def initialize(tag, parent)
  @tag, @parent = tag, parent
  super("tag <#{tag}> is missing in tag <#{parent}>")
end

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent



77
78
79
# File 'lib/rss/rss.rb', line 77

def parent
  @parent
end

#tagObject (readonly)

Returns the value of attribute tag



77
78
79
# File 'lib/rss/rss.rb', line 77

def tag
  @tag
end