Created exception to handle cases in which downloading a new geolite db fails

This commit is contained in:
Alejandro Celaya
2019-04-14 10:10:10 +02:00
parent feb67e76f0
commit 935562acc9
3 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\CLI\Exception;
use Throwable;
interface ExceptionInterface extends Throwable
{
}