Occurs when the Parser expects an end tag for one
tag and finds the end tag for another.
Public Class Methods
new(expected_tag, got_tag, stack)click to toggle source
# File lib/radius/error.rb, line 8definitialize(expected_tag, got_tag, stack)
stack_message = " with stack #{stack.inspect}"ifstacksuper("wrong end tag `#{got_tag}' found for start tag `#{expected_tag}'#{stack_message}")
end