Files
TijdVoorDeTest/src/Exception/SpreadsheetDataException.php

19 lines
397 B
PHP

<?php
declare(strict_types=1);
namespace Tvdt\Exception;
class SpreadsheetDataException extends SpreadsheetException
{
/** @param list<string> $errors */
public function __construct(
public readonly array $errors,
string $message = '',
int $code = 0,
?\Throwable $previous = null,
) {
parent::__construct($message, $code, $previous);
}
}