ispt4.0_laravel/vendor/pusher/pusher-php-server/src/ApiErrorException.php
2025-03-12 12:02:15 +00:00

22 lines
443 B
PHP
Executable File

<?php
namespace Pusher;
/**
* HTTP error responses.
* getCode() will return the response HTTP status code,
* and getMessage() will return the response body.
*/
class ApiErrorException extends PusherException
{
/**
* Returns the string representation of the exception.
*
* @return string
*/
public function __toString(): string
{
return "(Status {$this->getCode()}) {$this->getMessage()}";
}
}