Class: Glia::Errors::ResourceNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/glia/errors/client_errors.rb

Instance Attribute Summary

Attributes inherited from Error

#error_details, #message, #ref, #type

Instance Method Summary collapse

Methods inherited from Error

#to_h

Constructor Details

#initialize(resource:, message: nil) ⇒ ResourceNotFoundError

Returns a new instance of ResourceNotFoundError.



141
142
143
144
145
146
147
148
149
150
# File 'lib/glia/errors/client_errors.rb', line 141

def initialize(resource:, message: nil)
  Naming.assert_snake_case(resource)

  super(
    type: RESOURCE_NOT_FOUND_ERROR,
    ref: create_ref(RESOURCE_NOT_FOUND_ERROR),
    message: message || "#{Naming.humanize(resource)} not found",
    error_details: { resource: resource }
  )
end