RequestFailedException.php 466 B

1234567891011121314151617181920212223
  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. use Exception;
  12. /**
  13. * Thrown when a request to Discord's REST API fails.
  14. *
  15. * @author David Cole <david.cole1340@gmail.com>
  16. */
  17. class RequestFailedException extends Exception
  18. {
  19. }