Files
eCert-MBIP/vendor/intervention/image/src/Exceptions/ImageException.php

14 lines
234 B
PHP

<?php
declare(strict_types=1);
namespace Intervention\Image\Exceptions;
use Intervention\Image\Interfaces\ExceptionInterface;
use Exception;
abstract class ImageException extends Exception implements ExceptionInterface
{
//
}