Files
kulakpos_web/vendor/dompdf/php-font-lib/src/FontLib/Exception/FontNotFoundException.php

11 lines
202 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
namespace FontLib\Exception;
class FontNotFoundException extends \Exception
{
public function __construct($fontPath)
{
$this->message = 'Font not found in: ' . $fontPath;
}
}