mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
ae84530132
- Removed credis for native phpredis - Tidied up some docs - Setting up new travis.ci build
14 lines
302 B
PHP
14 lines
302 B
PHP
<?php
|
|
|
|
/**
|
|
* Exception to be thrown if while enqueuing a job it should not be created.
|
|
*
|
|
* @package Resque/Job
|
|
* @author Chris Boulton <chris@bigcommerce.com>
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
class Resque_Job_DontCreate extends Exception
|
|
{
|
|
|
|
}
|