mxmbsocket/lib/Ratchet/Exception.php
2011-09-04 17:30:21 -04:00

9 lines
200 B
PHP

<?php
namespace Ratchet;
class Exception extends \Exception {
public function __construct() {
$int = socket_last_error();
parent::__construct(socket_strerror($int), $int);
}
}