class Rake::Application

def has_chain?(exception)

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