Flowdock
method

add_chain_to

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Task
add_chain_to(exception, new_chain) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/task.rb, line 166
    def add_chain_to(exception, new_chain)
      exception.extend(InvocationExceptionMixin) unless exception.respond_to?(:chain)
      exception.chain = new_chain if exception.chain.nil?
    end
Register or log in to add new notes.