Files
domain-watchdog/src/Exception/Provider/PermissionErrorException.php

12 lines
269 B
PHP
Raw Normal View History

<?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");
}
}