Class: Glia::Errors::NoMatchingRoutingRuleError
- Defined in:
- lib/glia/errors/client_errors.rb
Instance Attribute Summary
Attributes inherited from Error
#error_details, #message, #ref, #type
Instance Method Summary collapse
-
#initialize(message: nil) ⇒ NoMatchingRoutingRuleError
constructor
A new instance of NoMatchingRoutingRuleError.
Methods inherited from Error
Constructor Details
#initialize(message: nil) ⇒ NoMatchingRoutingRuleError
Returns a new instance of NoMatchingRoutingRuleError.
493 494 495 496 497 498 499 |
# File 'lib/glia/errors/client_errors.rb', line 493 def initialize(message: nil) super( type: NO_MATCHING_ROUTING_RULE_ERROR, ref: create_ref(NO_MATCHING_ROUTING_RULE_ERROR), message: || 'Matching routing rule not found' ) end |