Exemplo n.º 1
0
 public ProgramExecutionException(ProgramExecutionResult executionResult, Exception innerException) : base("An exception catched during program execution!", innerException)
 {
     ExecutionResult = executionResult;
 }
Exemplo n.º 2
0
 public StreamRedirectionExecutionException(ProgramExecutionResult executionResult, Exception innerException) : base("One of stream redirection methods has failed!", innerException)
 {
     ExecutionResult = executionResult;
 }
Exemplo n.º 3
0
 public ExecutionException(ProgramExecutionResult executionResult, string message) : base(message)
 {
     ExecutionResult = executionResult;
 }
Exemplo n.º 4
0
 public StdOutLengthLimitReachedExecutionException(ProgramExecutionResult executionResult, string message) : base(executionResult, message)
 {
 }
Exemplo n.º 5
0
 public PeakDiskSpaceUsageLimitReachedExecutionException(ProgramExecutionResult executionResult, string message) : base(executionResult, message)
 {
 }
Exemplo n.º 6
0
 public RealTimeLimitReachedExecutionException(ProgramExecutionResult executionResult, string message) : base(executionResult, message)
 {
 }
Exemplo n.º 7
0
 public ExecutionException(string message, Exception innerException, ProgramExecutionResult executionResult = null) : base(message, innerException)
 {
     ExecutionResult = executionResult;
 }