# File lib/liquid/errors.rb, line 6
    def to_s(with_prefix=true)
      str = ""
      str << message_prefix if with_prefix
      str << super()

      if markup_context
        str << " "
        str << markup_context
      end

      str
    end