11 lines
202 B
PHP
11 lines
202 B
PHP
<?php
|
|
|
|
namespace FontLib\Exception;
|
|
|
|
class FontNotFoundException extends \Exception
|
|
{
|
|
public function __construct($fontPath)
|
|
{
|
|
$this->message = 'Font not found in: ' . $fontPath;
|
|
}
|
|
} |