mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 03:26:00 -07:00
9 lines
246 B
Ruby
9 lines
246 B
Ruby
# frozen_string_literal: false
|
|
require 'deps/rexml/parseexception'
|
|
module REXML
|
|
class UndefinedNamespaceException < ParseException
|
|
def initialize( prefix, source, parser )
|
|
super( "Undefined prefix #{prefix} found" )
|
|
end
|
|
end
|
|
end
|