class SPF::SyntaxError

Attributes

domain[RW]
hint[RW]
parse_text[RW]
text[RW]

Public Class Methods

new(message, text=nil, parse_text=nil, hint=nil) click to toggle source
Calls superclass method
# File lib/spf/error.rb, line 39
def initialize(message, text=nil, parse_text=nil, hint=nil)
  @text = text
  @parse_text = parse_text
  @hint = hint
  super(message)
end