class Parallel::ExceptionWrapper

Attributes

exception[R]

Public Class Methods

new(exception) click to toggle source
# File lib/gpack/core/parallel.rb, line 124
def initialize(exception)
  @exception =
    begin
      Marshal.dump(exception) && exception
    rescue
      UndumpableException.new(exception)
    end
end