예제 #1
0
 /// <summary>
 /// TestStepExecutionException constructor.
 /// </summary>
 /// <param name="message">The message associated with this exception.</param>
 /// <param name="subStep">The name of the BizUnit test step being validated.</param>
 /// <param name="args">An object array that contains zero or more objects to format.</param>
 public SubStepException(string message, SubStepBase subStep, params object[] args)
     : base(string.Format(message, args))
 {
     _subStep = subStep;
 }
예제 #2
0
 /// <summary>
 /// TestStepExecutionException constructor.
 /// </summary>
 /// <param name="message">The message associated with this exception.</param>
 /// <param name="subStep">The name of the BizUnit test step being validated.</param>
 public SubStepException(string message, SubStepBase subStep)
     : base(message)
 {
     _subStep = subStep;
 }