Exception: Serverkit::Errors::InvalidResourcesTypeError

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

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ InvalidResourcesTypeError

Returns a new instance of InvalidResourcesTypeError.

Parameters:

  • type (Class)


7
8
9
# File 'lib/serverkit/errors/invalid_resources_type_error.rb', line 7

def initialize(type)
  @type = type
end

Instance Method Details

#to_sObject



11
12
13
# File 'lib/serverkit/errors/invalid_resources_type_error.rb', line 11

def to_s
  "resources property must be an Array, not #{@type}"
end