class Tryouts::TestRunner

def handle_file_error(exception)

def handle_file_error(exception)
  @status       = :error
  Tryouts.debug "TestRunner#process_file: An error occurred processing #{file}: #{ex.message}"
  error_message = "Batch execution failed: #{exception.message}"
  backtrace     = exception.respond_to?(:backtrace) ? exception.backtrace : nil
  @output_manager&.error(error_message, backtrace)
end