Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

36 Zeilen
621 B

  1. <?php
  2. /*
  3. * This file is part of the overtrue/socialite.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Overtrue\Socialite;
  11. class AuthorizeFailedException extends \RuntimeException
  12. {
  13. /**
  14. * Response body.
  15. *
  16. * @var array
  17. */
  18. public $body;
  19. /**
  20. * Constructor.
  21. *
  22. * @param string $message
  23. * @param string $body
  24. */
  25. public function __construct($message, $body)
  26. {
  27. parent::__construct($message, -1);
  28. $this->body = $body;
  29. }
  30. }