vendor/league/oauth2-server-bundle/src/Security/Exception/OAuth2AuthenticationFailedException.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace League\Bundle\OAuth2ServerBundle\Security\Exception;
  4. /**
  5.  * @author Tobias Nyholm <tobias.nyholm@gmail.com>
  6.  */
  7. class OAuth2AuthenticationFailedException extends OAuth2AuthenticationException
  8. {
  9.     public static function create(string $message, ?\Throwable $previous null): self
  10.     {
  11.         return new self($message401$previous);
  12.     }
  13. }