D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
erp.dentostock.com
/
vendor
/
pusher
/
pusher-php-server
/
src
/
Filename :
ApiErrorException.php
back
Copy
<?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()}"; } }