HttpInternalServerErrorException.php 509 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Slim Framework (https://slimframework.com)
  4. *
  5. * @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License)
  6. */
  7. declare(strict_types=1);
  8. namespace Slim\Exception;
  9. class HttpInternalServerErrorException extends HttpSpecializedException
  10. {
  11. protected $code = 500;
  12. protected $message = 'Internal server error.';
  13. protected $title = '500 Internal Server Error';
  14. protected $description = 'Unexpected condition encountered preventing server from fulfilling request.';
  15. }