class Sinatra::Helpers::Wanted::WantedSyntaxError

Exception to notify of syntax error

Public Class Methods

new(msg=nil, id: nil, value: nil) click to toggle source
# File lib/sinatra/helpers/wanted.rb, line 28
def initialize(msg=nil, id: nil, value: nil)
    super(msg || "syntax error", id: id, value: value)
end