예제 #1
0
 /// <summary>
 /// Creates an exception to be thrown with information about the position in a job specification
 /// </summary>
 /// <param name="message"></param>
 /// <param name="args"></param>
 /// <returns></returns>
 public ParseException AttributeError(string message, params object[] args)
 {
     return(ParseException.AttributeError(this, args.Length > 0 ? string.Format(message, args) : message));
 }