class SecurityNotImplementedException extends \LogicException
8
{
9
10
public static function createNoAuthenticationException(): self
11
{
12
return new self('GraphQL-Controllers does not know how to check for authentication. You probably tried to use the @Logged annotation without configuring first an AuthenticationService.');
13
}
14
15
public static function createNoAuthorizationException(): self
16
{
17
return new self('GraphQL-Controllers does not know how to check for authorization. You probably tried to use the @Right annotation without configuring first an AuthorizationService.');