Пример #1
0
 internal ParseException
     (ParseExceptionCategory c, IOption o, string v, Exception cause) : base(message, cause)
 {
     Category     = c;
     TargetOption = o;
     TargetValue  = v;
 }
Пример #2
0
 ParseException MakeParseException(
     ParseExceptionCategory c,
     IOption <T> to, string tv)
 {
     return(new ParseException(c, to, tv));
 }