Exception: Serverkit::Errors::InvalidRecipeTypeError

Inherits:
Base
  • Object
show all
Defined in:
lib/serverkit/errors/invalid_recipe_type_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ InvalidRecipeTypeError

Returns a new instance of InvalidRecipeTypeError.

Parameters:



9
10
11
# File 'lib/serverkit/errors/invalid_recipe_type_error.rb', line 9

def initialize(type)
  @type = type
end

Instance Method Details

#to_sObject



13
14
15
# File 'lib/serverkit/errors/invalid_recipe_type_error.rb', line 13

def to_s
  "Recipe data must be a Hash, not #{@type}"
end