コード例 #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;
 }