Sha256: 93441ba294f56b49941196d124829b558c52aa0a87b81bd5f62cff26e711b6d5
Contents?: true
Size: 817 Bytes
Versions: 16
Compression:
Stored size: 817 Bytes
Contents
module RocketJob class JobException include Plugins::Document embedded_in :job, inverse_of: :exception embedded_in :slice, inverse_of: :exception embedded_in :dirmon_entry, inverse_of: :exception # Name of the exception class field :class_name, type: String # Exception message field :message, type: String # Exception Backtrace [Array<String>] field :backtrace, type: Array, default: [] # Name of the server on which this exception occurred field :worker_name, type: String # Returns [JobException] built from the supplied exception def self.from_exception(exc, **args) new( args.merge( class_name: exc.class.name, message: exc.message, backtrace: exc.backtrace || [] ) ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems