Use internal exceptions

Fixes #254
This commit is contained in:
Ben Ramsey
2019-12-19 12:20:53 -06:00
parent 0d7b8c2b7a
commit 12896f06db
36 changed files with 336 additions and 40 deletions
@@ -14,11 +14,11 @@ declare(strict_types=1);
namespace Ramsey\Uuid\Exception;
use RuntimeException;
use LogicException as PhpLogicException;
/**
* Thrown to indicate that the requested operation is not supported.
* Thrown to indicate that the requested operation is not supported
*/
class UnsupportedOperationException extends RuntimeException
class UnsupportedOperationException extends PhpLogicException
{
}