Google

"DTD/xhtml1-strict.dtd">
Class Amrita::HtmlParseError
In: lib/amrita/parser.rb
Parent: StandardError
Methods
new   
Attributes
:error  [R] 
:fname  [R] 
:line  [R] 
:lno  [R] 
Public Class methods
new(error, fname, lno, line)
# File lib/amrita/parser.rb, line 254
    def initialize(error, fname, lno, line)
      @error, @fname, @lno, @line = error, fname, lno, line
      super("error hapend in #{@fname}:#{@lno}(#{error}) \n==>#{line}")
    end