Files
2025-10-06 21:46:28 +02:00

21 lines
466 B
PHP

<?php
namespace App\Services\Documents\Exceptions;
use RuntimeException;
class UnresolvedTokensException extends RuntimeException
{
/** @var array<int,string> */
public array $unresolved;
/**
* @param array<int,string> $unresolved
*/
public function __construct(array $unresolved, string $message = 'Unresolved tokens remain in template.')
{
parent::__construct($message);
$this->unresolved = $unresolved;
}
}