Benötigte Pakete installiert

This commit is contained in:
Borgal
2025-11-16 21:13:51 +01:00
parent 1b9ba22bb5
commit ddcd614a49
314 changed files with 183918 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace FontLib\Exception;
class FontNotFoundException extends \Exception
{
public function __construct($fontPath)
{
$this->message = 'Font not found in: ' . $fontPath;
}
}