mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
19 lines
397 B
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);
|
|
}
|
|
}
|