class UnmatchedException

This exception is raised when a Component's ending delimiter can't be found.

Public Class Methods

new( name, line ) click to toggle source
Calls superclass method
# File lib/mulparse/unmatched_exception.rb, line 10
def initialize( name, line )

    # Initialize Exception with message
    super( "UnmatchedException: finish_match for %p at line: #{line} not found" % name )

end