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