commitall
This commit is contained in:
21
vendor/pusher/pusher-php-server/src/ApiErrorException.php
vendored
Normal file
21
vendor/pusher/pusher-php-server/src/ApiErrorException.php
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
<?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()}";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user