Exception: Graphiti::Errors::ResourceEndpointConflict
- Defined in:
- lib/graphiti/errors.rb
Instance Method Summary collapse
-
#initialize(path, action, resource_a, resource_b) ⇒ ResourceEndpointConflict
constructor
A new instance of ResourceEndpointConflict.
- #message ⇒ Object
Constructor Details
#initialize(path, action, resource_a, resource_b) ⇒ ResourceEndpointConflict
Returns a new instance of ResourceEndpointConflict.
464 465 466 467 468 469 |
# File 'lib/graphiti/errors.rb', line 464 def initialize(path, action, resource_a, resource_b) @path = path @action = action @resource_a = resource_a @resource_b = resource_b end |
Instance Method Details
#message ⇒ Object
471 472 473 474 475 476 477 |
# File 'lib/graphiti/errors.rb', line 471 def " Both '\#{@resource_a}' and '\#{@resource_b}' are associated to endpoint \#{@path}#\#{@action}!\n\n Only one resource can be associated to a given url/verb combination.\n MSG\nend\n" |