Exception: Radius::UndefinedTagError
- Inherits:
-
ParseError
- Object
- StandardError
- ParseError
- Radius::UndefinedTagError
- Defined in:
- lib/radius/error.rb
Overview
Occurs when Context#render_tag cannot find the specified tag on a Context.
Instance Method Summary collapse
-
#initialize(tag_name) ⇒ UndefinedTagError
constructor
Create a new UndefinedTagError object for
tag_name
.
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 |