/
madarlan
/
pdf-bridge-php
Обзор
Документация
Войти
/
madarlan
/
pdf-bridge-php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Exceptions/UnsupportedFormatException.php
23 строки
577 B
Madinov Arlan
Initial commit
25 окт 2025, 15:27
25 окт 2025, 15:27
0cf92f0
Код
Авторство
О чём код?
<?php namespace MadArlan\PDFBridge\Exceptions; /** * Exception thrown when trying to convert unsupported file format */ class UnsupportedFormatException extends PDFBridgeException { /** * Create a new unsupported format exception instance */ public function __construct(string $format, array $supportedFormats = []) { $message = "Unsupported format: $format"; if (! empty($supportedFormats)) { $message .= '. Supported formats: '.implode(', ', $supportedFormats); } parent::__construct($message); } }