vendor/drenso/symfony-oidc-bundle/src/Security/Exception/OidcAuthenticationException.php line 8

Open in your IDE?
  1. <?php
  2. namespace Drenso\OidcBundle\Security\Exception;
  3. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  4. use Throwable;
  5. class OidcAuthenticationException extends AuthenticationException
  6. {
  7.   public function __construct(
  8.     string $message,
  9.     ?Throwable $previous null)
  10.   {
  11.     parent::__construct($message0$previous);
  12.   }
  13. }