Exception: RSS::NotExpectedTagError

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

Overview

Raised when an unexpected tag is encountered.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tag, uri, parent) ⇒ NotExpectedTagError

Returns a new instance of NotExpectedTagError.



122
123
124
125
# File 'lib/rss/rss.rb', line 122

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

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent



121
122
123
# File 'lib/rss/rss.rb', line 121

def parent
  @parent
end

#tagObject (readonly)

Returns the value of attribute tag



121
122
123
# File 'lib/rss/rss.rb', line 121

def tag
  @tag
end

#uriObject (readonly)

Returns the value of attribute uri



121
122
123
# File 'lib/rss/rss.rb', line 121

def uri
  @uri
end