| 1 | <?php |
||
| 5 | class SocketException extends \Exception |
||
| 6 | { |
||
| 7 | protected $message = 'Socket Exception'; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * SocketException constructor. |
||
| 11 | * |
||
| 12 | * @param string|resource|null $message Provide a resource instead of a message to use the socket_last_error as the |
||
| 13 | * message |
||
| 14 | */ |
||
| 15 | 2 | public function __construct($message = null) |
|
| 37 | } |
||
| 38 |