class Sinatra::Helpers::Wanted::WantedError
Generic exception. Only the inherited exceptions are raised.
Attributes
id[R]
value[R]
Public Class Methods
new(msg=nil, value: nil, id: nil)
click to toggle source
Calls superclass method
# File lib/sinatra/helpers/wanted.rb, line 17 def initialize(msg=nil, value: nil, id: nil) super(msg) @value = value @id = id end