public get message()

in src/services/form-validation/types/errors.ts [20:25]


  public get message(): string {
    return (
      this._message ??
      `The type of the downloaded file is not supported. Supported types are: ${this.supportedMimeTypes.join('; ')}.`
    );
  }