InvalidTokenException.php 475 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is a part of the DiscordPHP-Http project.
  4. *
  5. * Copyright (c) 2021-present David Cole <david.cole1340@gmail.com>
  6. *
  7. * This file is subject to the MIT license that is bundled
  8. * with this source code in the LICENSE file.
  9. */
  10. namespace Discord\Http\Exceptions;
  11. /**
  12. * Thrown when an invalid token is provided to a Discord endpoint.
  13. *
  14. * @author David Cole <david.cole1340@gmail.com>
  15. */
  16. class InvalidTokenException extends RequestFailedException
  17. {
  18. }