/home/techb158/ileadtechnology.com/vendor/predis/predis/src/Response
NameSizeModeActions
Iterator/-0755rm
Error.php11510644editdlrm
ErrorInterface.php7850644editdlrm
ResponseInterface.php4170644editdlrm
ServerException.php9500644editdlrm
Status.php17430644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/predis/predis/src/Response/ErrorInterface.php (785B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Response; /** * Represents an error returned by Redis (responses identified by "-" in the * Redis protocol) during the execution of an operation on the server. * * @author Daniele Alessandri */ interface ErrorInterface extends ResponseInterface { /** * Returns the error message. * * @return string */ public function getMessage(); /** * Returns the error type (e.g. ERR, ASK, MOVED). * * @return string */ public function getErrorType(); }