for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Acme\App\Infrastructure\Auth\Authentication\Oauth;
use Acme\App\Core\SharedKernel\Exception\AppRuntimeException;
final class InvalidOauthScopeException extends AppRuntimeException
{
public function __construct(string $identifier)
parent::__construct("Could not find an Oauth scope with identifier '$identifier'");
}