Constructs a new FileValidationException.
string $message: The message.
string $file_name: The file name.
array $errors: The validation errors.
public function __construct(string $message, string $file_name, array $errors) { parent::__construct($message, 0, NULL); $this->fileName = $file_name; $this->errors = $errors; }