mirror of
https://github.com/predis/predis.git
synced 2026-08-21 14:51:06 +00:00
14 lines
293 B
PHP
14 lines
293 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
use Predis\Network\IConnectionSingle;
|
|
|
|
class ProtocolException extends CommunicationException {
|
|
// Unexpected responses
|
|
|
|
public function __construct(IConnectionSingle $connection, $message = null) {
|
|
parent::__construct($connection, $message);
|
|
}
|
|
}
|