Class: Delayed::JobGroups::IncompatibleWithDelayedJobError

Inherits:
ConfigurationError
  • Object
show all
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

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