class Croupier::RunFailure

Overview

Raised when a run has failing tasks. Without keep_going the run aborts on the first failure (state is not saved); with keep_going: true the run completes everything it can and saves its state, then this is raised at the end. #errors carries every task failure, since Exception#cause can only chain one.

Defined in:

task.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(errors : Array(Exception)) #

[View source]

Instance Method Detail

def errors : Array(Exception) #

[View source]