phpmyadmin/src/Exceptions/InvalidImagePath.php
Kamil Tekiela a47c9a7cf3 Throw exceptions instead of errors
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2024-03-13 17:15:33 +01:00

12 lines
128 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Exceptions;
use Exception;
class InvalidImagePath extends Exception
{
}