mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-23 08:45:14 +00:00
13 lines
329 B
PHP
13 lines
329 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Runtime exception class for a job that does not exit cleanly.
|
||
|
*
|
||
|
* @package Resque/Job
|
||
|
* @author Chris Boulton <chris.boulton@interspire.com>
|
||
|
* @copyright (c) 2010 Chris Boulton
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||
|
*/
|
||
|
class Resque_Job_DirtyExitException extends RuntimeException
|
||
|
{
|
||
|
|
||
|
}
|