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