Imported File#ftype spec from rubyspecs.
[rbx.git] / lib / rexml / undefinednamespaceexception.rb
blob8ebfdfd0a9596f7b3e01c3391717b4303f76de5e
1 require 'rexml/parseexception'
2 module REXML
3   class UndefinedNamespaceException < ParseException
4     def initialize( prefix, source, parser )
5       super( "Undefined prefix #{prefix} found" )
6     end
7   end
8 end