lib/nokogiri/xml/xpath/syntax_error.rb



# frozen_string_literal: true

module Nokogiri
  module XML
    module XPath
      class SyntaxError < XML::SyntaxError
        def to_s
          [super.chomp, str1].compact.join(": ")
        end
      end
    end
  end
end