10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
namespace JPush\Exceptions;
|
|
|
|
class APIConnectionException extends JPushException {
|
|
|
|
function __toString() {
|
|
return "\n" . __CLASS__ . " -- {$this->message} \n";
|
|
}
|
|
}
|