CatchException.php 546 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\exceptions;
  4. use Exception;
  5. use think\exception\HttpException;
  6. abstract class CatchException extends HttpException
  7. {
  8. protected const HTTP_SUCCESS = 200;
  9. public function __construct(string $message = '', int $code = 0, Exception $previous = null, array $headers = [], $statusCode = 0)
  10. {
  11. parent::__construct($statusCode, $message ? : $this->getMessage(), $previous, $headers, $code);
  12. }
  13. public function getStatusCode()
  14. {
  15. return self::HTTP_SUCCESS;
  16. }
  17. }