Exception: Graphiti::Errors::SideloadQueryBuildingError
- Defined in:
- lib/graphiti/errors.rb
Instance Method Summary collapse
-
#initialize(resource_class, sideload_name) ⇒ SideloadQueryBuildingError
constructor
A new instance of SideloadQueryBuildingError.
- #message ⇒ Object
Constructor Details
#initialize(resource_class, sideload_name) ⇒ SideloadQueryBuildingError
Returns a new instance of SideloadQueryBuildingError.
259 260 261 262 |
# File 'lib/graphiti/errors.rb', line 259 def initialize(resource_class, sideload_name) @resource_class = resource_class @sideload_name = sideload_name end |
Instance Method Details
#message ⇒ Object
264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/graphiti/errors.rb', line 264 def <<-MSG #{@resource_class.name}: error occurred while sideloading "#{@sideload_name}"! The error was raised while attempting to build the scope for the associated Resource. Read more about sideload scoping here: www.graphiti.dev/guides/concepts/resources#customizing-scope Here's the original, underlying error: #{cause.class.name}: #{cause.} #{cause.backtrace.join("\n")} MSG end |