internal ParseException (ParseExceptionCategory c, IOption o, string v, Exception cause) : base(message, cause) { Category = c; TargetOption = o; TargetValue = v; }
ParseException MakeParseException( ParseExceptionCategory c, IOption <T> to, string tv) { return(new ParseException(c, to, tv)); }