Refactored exceptions to properly use package exceptions

This commit is contained in:
Alejandro Celaya
2017-12-30 21:35:26 +01:00
parent 745ff51150
commit ede4525332
18 changed files with 61 additions and 30 deletions

View File

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