summaryrefslogtreecommitdiff
path: root/lib/rexml/undefinednamespaceexception.rb
blob: 492a098183e3cc955c1aecf587845a495b8fa43e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: false
require_relative 'parseexception'
module REXML
  class UndefinedNamespaceException < ParseException
    def initialize( prefix, source, parser )
      super( "Undefined prefix #{prefix} found" )
    end
  end
end