mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-24 17:25:13 +00:00
idanoo
05cae402b5
- Update composer packages - Added WoodpeckerCI tests - Updated links in composer package - Stricter typing
16 lines
245 B
PHP
16 lines
245 B
PHP
<?php
|
|
|
|
namespace Resque;
|
|
|
|
/**
|
|
* Redis exceptions
|
|
*
|
|
* @package Resque
|
|
* @author Daniel Mason <daniel@m2.nz>
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
|
|
class RedisException extends \Exception
|
|
{
|
|
}
|