# File lib/radius/error.rb, line 8
    def initialize(expected_tag, got_tag, stack)
      stack_message = " with stack #{stack.inspect}" if stack
      super("wrong end tag `#{got_tag}' found for start tag `#{expected_tag}'#{stack_message}")
    end