php-resque/demo/bad_job.php

9 lines
113 B
PHP
Raw Normal View History

2010-04-18 13:58:43 +00:00
<?php
class Bad_PHP_Job
{
public function perform()
{
throw new Exception('Unable to run this job!');
}
}
?>