Add interface for UUID-related exceptions (#340)

Add common interface for exceptions so that wrappers can identify that is a UUID-related exception
This commit is contained in:
Barney Hanlon
2021-04-23 17:12:51 +01:00
committed by GitHub
parent e5b3699bbe
commit 90a87a7543
13 changed files with 33 additions and 12 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
/**
* This file is part of the ramsey/uuid library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
* @license http://opensource.org/licenses/MIT MIT
*/
declare(strict_types=1);
namespace Ramsey\Uuid\Exception;
use Throwable;
interface UuidExceptionInterface extends Throwable
{
}