Merge pull request #275 from bobvandevijver/patch-2

Remove unneeded catch
This commit is contained in:
Chris Boden 2015-01-25 11:09:29 -05:00
commit 21fbef1773

View File

@ -41,8 +41,6 @@ class WampServer implements MessageComponentInterface, WsServerInterface {
$this->wampProtocol->onMessage($conn, $msg);
} catch (Exception $we) {
$conn->close(1007);
} catch (JsonException $je) {
$conn->close(1007);
}
}