Item Type
Item Name
Search file in folder and subfolders...
<?php namespace FontLib\Exception; class FontNotFoundException extends \Exception { public function __construct($fontPath) { $this->message = 'Font not found in: ' . $fontPath; } }