Class: Glia::Errors::UnreachableDestinationError

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(message: nil) ⇒ UnreachableDestinationError

Returns a new instance of UnreachableDestinationError.



334
335
336
337
338
339
340
# File 'lib/glia/errors/client_errors.rb', line 334

def initialize(message: nil)
  super(
    type: UNREACHABLE_DESTINATION_ERROR,
    ref: create_ref(UNREACHABLE_DESTINATION_ERROR),
    message: message || 'Destination is unreachable'
  )
end