class Grntest::ParseError

Attributes

content[R]
reason[R]
type[R]

Public Class Methods

new(type, content, reason) click to toggle source
Calls superclass method
# File lib/grntest/error.rb, line 31
def initialize(type, content, reason)
  @type = type
  @content = content
  @reason = reason
  super("failed to parse <#{@type}> content: #{reason}: <#{content}>")
end