class Paradeiser::InvalidTypeError
Public Class Methods
new(type, choices)
click to toggle source
Calls superclass method
# File lib/paradeiser/errors.rb, line 33 def initialize(type, choices) super("'#{type}' is not a valid type. Valid are only #{choices}.") end