public ParserException(ParseError error) : this(null, error)
 {
 }
 public ParserException(string?message, ParseError error) : this(message, error, null)
 {
 }
Exemple #3
0
 public ParserException(string message, ParseError error, Exception innerException) :
     base(message ?? error?.ToString(), innerException)
 {
     Error = error;
 }