Exception: Graphiti::Errors::ResourceNotFound
- Defined in:
- lib/graphiti/errors.rb
Instance Method Summary collapse
-
#initialize(resource_class, sideload_name, tried) ⇒ ResourceNotFound
constructor
A new instance of ResourceNotFound.
- #message ⇒ Object
Constructor Details
#initialize(resource_class, sideload_name, tried) ⇒ ResourceNotFound
Returns a new instance of ResourceNotFound.
771 772 773 774 775 |
# File 'lib/graphiti/errors.rb', line 771 def initialize(resource_class, sideload_name, tried) @resource_class = resource_class @sideload_name = sideload_name @tried = tried end |
Instance Method Details
#message ⇒ Object
777 778 779 780 781 782 783 784 785 786 787 |
# File 'lib/graphiti/errors.rb', line 777 def <<~MSG Could not find resource class for sideload '#{@sideload_name}' on Resource '#{@resource_class.name}'! Tried to find classes: #{@tried.join(", ")} If this follows a non-standard naming convention, use the :resource option to pass it directly: has_many :comments, resource: SpecialCommentResource MSG end |