mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
20 lines
428 B
Ruby
20 lines
428 B
Ruby
class RescueJob < ActiveJob::Base
|
|
class OtherError < StandardError; end
|
|
|
|
rescue_from(ArgumentError) do
|
|
JobBuffer.add('rescued from ArgumentError')
|
|
arguments[0] = "DIFFERENT!"
|
|
retry_now
|
|
end
|
|
|
|
def perform(person = "david")
|
|
case person
|
|
when "david"
|
|
raise ArgumentError, "Hair too good"
|
|
when "other"
|
|
raise OtherError
|
|
else
|
|
JobBuffer.add('performed beautifully')
|
|
end
|
|
end
|
|
end
|