mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
12 lines
269 B
PHP
12 lines
269 B
PHP
<?php
|
|
|
|
namespace App\Exception\Provider;
|
|
|
|
class PermissionErrorException extends AbstractProviderException
|
|
{
|
|
public static function fromIdentifier(string $identifier): self
|
|
{
|
|
return new self("Not enough permissions for identifier $identifier");
|
|
}
|
|
}
|