Fixed more Exception namespaces

This commit is contained in:
aymm 2021-03-09 19:43:55 +00:00
parent 1728275c7b
commit 95776a22f8
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ namespace APnutI\Exceptions;
use APnutI\Exceptions\PnutException;
class NotAuthorizedException extends Exception
class NotAuthorizedException extends \Exception
{
}

View File

@ -1,7 +1,7 @@
<?php
namespace APnutI\Exceptions;
class NotSupportedPollException extends Exception
class NotSupportedPollException extends \Exception
{
}

View File

@ -1,7 +1,7 @@
<?php
namespace APnutI\Exceptions;
class PnutException extends Exception
class PnutException extends \Exception
{
}