Example #1
0
 /// <summary>
 /// Thrown when the Selenium server folder does not exist or cannot be accessed
 /// </summary>
 /// <param name="Path">Path string</param>
 /// <param name="InnerException">Exception thrown when trying to instantiate Selenium</param>
 public SeleniumFolderError(string Path, Exception InnerException)
     : base(SeleniumFolderError.FormatMessage(Path), InnerException)
 {
 }
Example #2
0
 /// <summary>
 /// Thrown when the Selenium server folder does not exist or cannot be accessed
 /// </summary>
 /// <param name="Path">Path string</param>
 public SeleniumFolderError(string Path)
     : base(SeleniumFolderError.FormatMessage(Path))
 {
 }