Create mapping from domain constant value to keys
Create mapping from domain constant value to keys
Quiet error handler
Verbose error handler
# File lib/libxml/error.rb, line 36 def ==(other) eql?(other) end
# File lib/libxml/error.rb, line 73 def code_to_s ERROR_CODE_MAP[self.code] end
# File lib/libxml/error.rb, line 69 def domain_to_s DOMAIN_CODE_MAP[self.domain] end
# File lib/libxml/error.rb, line 40 def eql?(other) self.code == other.code and self.domain == other.domain and self.message == other.message and self.level == other.level and self.file == other.file and self.line == other.line and self.str1 == other.str1 and self.str2 == other.str2 and self.str3 == other.str3 and self.int1 == other.int1 and self.int2 == other.int2 and self.ctxt == other.ctxt and self.node == other.node end
# File lib/libxml/error.rb, line 56 def level_to_s case self.level when NONE '' when WARNING 'Warning:' when ERROR 'Error:' when FATAL 'Fatal error:' end end
# File lib/libxml/error.rb, line 77 def to_s msg = super msg = msg ? msg.strip: '' if self.line sprintf("%s %s at %s:%d.", self.level_to_s, msg, self.file, self.line) else sprintf("%s %s.", self.level_to_s, msg) end end