class Rake::Application

def has_chain?(exception) # :nodoc:

:nodoc:
Does the exception have a task invocation chain?
def has_chain?(exception) # :nodoc:
  exception.respond_to?(:chain) && exception.chain
end