class Radius::UndefinedTagError
Occurs when Context#render_tag cannot find the specified tag on a Context.
Public Class Methods
new(tag_name)
click to toggle source
Create a new UndefinedTagError object for tag_name.
Calls superclass method
# File lib/radius/error.rb, line 27 def initialize(tag_name) super("undefined tag `#{tag_name}'") end