mirror of
https://github.com/predis/predis.git
synced 2026-08-22 13:32:20 +00:00
30 lines
495 B
PHP
30 lines
495 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();
|
|
}
|
|
}
|