mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 09:26:21 +00:00
22 lines
487 B
Ruby
22 lines
487 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'json/add/exception'
|
|
|
|
module ActiveJob
|
|
module Serializers
|
|
class ExceptionSerializer < ObjectSerializer # :nodoc:
|
|
def serialize(ex)
|
|
super('value' => { 'class' => ex.class.name, 'exception' => ex.as_json })
|
|
end
|
|
|
|
def deserialize(hash)
|
|
hash.dig('value', 'class').constantize.json_create(hash.dig('value', 'exception'))
|
|
end
|
|
|
|
private
|
|
def klass
|
|
Exception
|
|
end
|
|
end
|
|
end
|
|
end
|