class Rager::Errors::ParseError
Public Class Methods
Source
# File lib/rager/errors/parse_error.rb 12 def initialize(body, details: nil) 13 error_data = { 14 type: "parse", 15 body: body, 16 details: details 17 } 18 19 super(error_data.to_json) 20 end
Calls superclass method