Class: Delayed::JobGroups::IncompatibleWithDelayedJobError
- Inherits:
-
ConfigurationError
- Object
- Delayed::JobGroups::IncompatibleWithDelayedJobError
- Defined in:
- lib/delayed/job_groups/errors.rb
Constant Summary collapse
- DEFAULT_MESSAGE =
'DelayedJobGroupsPlugin is incompatible with Delayed::Job ' \ 'when `destroy_failed_jobs` is set to `true`'
Instance Method Summary collapse
-
#initialize(msg = DEFAULT_MESSAGE) ⇒ IncompatibleWithDelayedJobError
constructor
A new instance of IncompatibleWithDelayedJobError.
Constructor Details
#initialize(msg = DEFAULT_MESSAGE) ⇒ IncompatibleWithDelayedJobError
11 12 13 |
# File 'lib/delayed/job_groups/errors.rb', line 11 def initialize(msg = DEFAULT_MESSAGE) super(msg) end |