Exception: Fabychy::Errors::InvalidParamTypeError
- Inherits:
-
StandardError
- Object
- StandardError
- Fabychy::Errors::InvalidParamTypeError
- Defined in:
- lib/fabychy.rb,
lib/fabychy/user.rb
Overview
Error returned when a param type is invalid
Instance Method Summary collapse
-
#initialize(parameter, current_type, allowed_types) ⇒ InvalidParamTypeError
constructor
A new instance of InvalidParamTypeError.
Constructor Details
#initialize(parameter, current_type, allowed_types) ⇒ InvalidParamTypeError
Returns a new instance of InvalidParamTypeError.
54 55 56 |
# File 'lib/fabychy.rb', line 54 def initialize(parameter, current_type, allowed_types) super("Invalid parameter type: `#{parameter}`: `#{current_type}`. Allowed types: #{allowed_types.each { |type| type.class.to_s }.join(',')}.") end |