class Contender::ExecutionError
Raised when attempting to retrieve the result of a task that aborted by raising an exception
Attributes
cause[R]
@return [Exception]
Public Class Methods
new(cause)
click to toggle source
@param [Exception] cause @return [undefined]
# File lib/contender/errors.rb, line 21 def initialize(cause) @cause = cause set_backtrace cause.backtrace end