Exception: Radius::UndefinedTagError

Inherits:
ParseError
  • Object
show all
Defined in:
lib/radius/errors.rb

Overview

Occurs when Context#render_tag cannot find the specified tag on a Context.

Instance Method Summary collapse

Constructor Details

#initialize(tag_name) ⇒ UndefinedTagError

Create a new UndefinedTagError object for tag_name.



19
20
21
# File 'lib/radius/errors.rb', line 19

def initialize(tag_name)
  super("undefined tag `#{tag_name}'")
end