summaryrefslogtreecommitdiff
path: root/lib/rexml/undefinednamespaceexception.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/undefinednamespaceexception.rb')
-rw-r--r--lib/rexml/undefinednamespaceexception.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/rexml/undefinednamespaceexception.rb b/lib/rexml/undefinednamespaceexception.rb
deleted file mode 100644
index 492a098183..0000000000
--- a/lib/rexml/undefinednamespaceexception.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# 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