|
1
|
<?php |
|
2
|
|
|
3
|
declare (strict_types=1); |
|
4
|
namespace Matomo\Dependencies\MaxMind\Exception; |
|
5
|
|
|
6
|
/** |
|
7
|
* This exception is thrown when the service requires permission to access.
|
|
8
|
*/ |
|
9
|
class PermissionRequiredException extends InvalidRequestException |
|
10
|
{ |
|
11
|
} |
|
12
|
|