Exception: ConvenientService::Service::Plugins::CanHaveConnectedSteps::Exceptions::FirstGroupStepIsNotSet Private
- Inherits:
-
Exception
- Object
- StandardError
- Exception
- ConvenientService::Service::Plugins::CanHaveConnectedSteps::Exceptions::FirstGroupStepIsNotSet
- Defined in:
- lib/convenient_service/service/plugins/can_have_connected_steps/exceptions.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
Methods inherited from Exception
Instance Method Details
#initialize_with_kwargs(container:, method:) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/exceptions.rb', line 45 def initialize_with_kwargs(container:, method:) printable_container = Utils::Class.display_name(container) = <<~TEXT First step of `#{method}` from `#{printable_container}` is NOT set. Did you forget to use `step`? For example: class #{printable_container} # ... #{method} do step SomeService # ... end # ... end TEXT initialize() end |