mirror of
https://github.com/predis/predis.git
synced 2026-08-25 16:09:37 +00:00
25 lines
479 B
PHP
25 lines
479 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
class ResponseError implements IRedisServerError {
|
|
private $_message;
|
|
|
|
public function __construct($message) {
|
|
$this->_message = $message;
|
|
}
|
|
|
|
public function getMessage() {
|
|
return $this->_message;
|
|
}
|
|
|
|
public function getErrorType() {
|
|
list($errorType, ) = explode(' ', $this->getMessage(), 2);
|
|
return $errorType;
|
|
}
|
|
|
|
public function __toString() {
|
|
return $this->getMessage();
|
|
}
|
|
}
|