mirror of
https://github.com/predis/predis.git
synced 2026-08-19 18:22:06 +00:00
11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
class ServerException extends PredisException {
|
|
// Server-side errors
|
|
public function toResponseError() {
|
|
return new ResponseError($this->getMessage());
|
|
}
|
|
}
|