File: rexml/undefinednamespaceexception.rb

Overview
Module Structure
Class Hierarchy
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: REXML#2
  class: UndefinedNamespaceException#3
inherits from
  ParseException ( REXML )
has properties
method: initialize / 3 #4

Code

   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