Exemplo n.º 1
0
 /// <summary>
 /// Requested run option rejected. Category or Name with that category does not exist
 /// </summary>
 /// <param name="Message">Message preceding standard text</param>
 /// <param name="Category">Name of Category for option being requested</param>
 /// <param name="Name">Name of option being requested</param>
 public RunOptionOrCategoryDoesNotExist(string Category, string Name, string Message)
     : base(RunOptionOrCategoryDoesNotExist.FormatMessage(Category, Name, Message))
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Requested run option rejected. Category or Name with that category does not exist
 /// </summary>
 /// <param name="Name">Name of option being requested</param>
 public RunOptionOrCategoryDoesNotExist(string Name)
     : base(RunOptionOrCategoryDoesNotExist.FormatMessage(null, Name))
 {
 }