You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
433 B

<?php
namespace App\Exceptions;
use RuntimeException;
class YuanhePackInfoException extends RuntimeException
{
public function __construct(
string $message,
public readonly ?int $httpStatus = null,
public readonly ?string $contentType = null,
public readonly ?string $rawResponse = null,
?\Throwable $previous = null
) {
parent::__construct($message, 0, $previous);
}
}