public ParseException(string msg, Exception innerException, ParseExceptionParameter para) : base(msg) { this.innerException = innerException; this.data = para; this.error = msg; }
public ParseException(string msg, ParseExceptionParameter para) : base(msg) { this.error = msg; this.data = para; }