Files
jianbing/vendor/overtrue/socialite/src/Exceptions/AuthorizeFailedException.php
2025-05-06 17:51:37 +08:00

19 lines
324 B
PHP
Executable File

<?php
namespace Overtrue\Socialite\Exceptions;
use JetBrains\PhpStorm\Pure;
class AuthorizeFailedException extends Exception
{
public array $body;
#[Pure]
public function __construct(string $message, mixed $body)
{
parent::__construct($message, -1);
$this->body = (array) $body;
}
}