public CanParseValidationResult(
     Type type,
     string text,
     IFormatProvider currentBoxCulture,
     NoParameterFormatAndCulture formatAndCulture,
     bool isValid,
     object errorContent)
     : base(currentBoxCulture, formatAndCulture, isValid, errorContent)
 {
     this.Type = type;
     this.Text = text;
 }
 public RegexValidationResult(
     string text,
     string?pattern,
     Exception?exception,
     IFormatProvider currentBoxCulture,
     NoParameterFormatAndCulture formatAndCulture,
     bool isValid,
     object errorContent)
     : base(currentBoxCulture, formatAndCulture, isValid, errorContent)
 {
     this.Text      = text;
     this.Pattern   = pattern;
     this.Exception = exception;
 }