mirror of
https://github.com/predis/predis.git
synced 2026-08-23 22:49:45 +00:00
9 lines
149 B
PHP
9 lines
149 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
interface IRedisServerError extends IReplyObject {
|
|
public function getMessage();
|
|
public function getErrorType();
|
|
}
|