mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 21:52:21 +00:00
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
namespace Resque\Job;
|
|
|
|
/**
|
|
* Exception to be thrown if while enqueuing a job it should not be created.
|
|
*
|
|
* @package Resque/Job
|
|
* @author Daniel Mason <daniel@m2.nz>
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
class DontCreate extends \Exception
|
|
{
|
|
}
|