/// <summary>
 /// Initializes a new instance of the BootstrapsPullupResult class.
 /// </summary>
 /// <param name="resultType">The result type.</param>
 /// <param name="ex">The exception, if applicable.</param>
 public BootstrapsPullupResult(BootstrapsPullupResultType resultType, Exception ex)
 {
     this.ResultType = resultType;
     this.Exception = ex;
 }
 /// <summary>
 /// Initializes a new instance of the BootstrapsPullupResult class.
 /// </summary>
 /// <param name="resultType">The result type.</param>
 public BootstrapsPullupResult(BootstrapsPullupResultType resultType)
     : this(resultType, null)
 {
 }