Exception: Radius::UndefinedTagError

Inherits:
ParseError
  • Object
show all
Defined in:
lib/radius/error.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.



27
28
29
# File 'lib/radius/error.rb', line 27

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