php-resque/demo/bad_job.php

8 lines
110 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!');
}
2013-03-13 11:41:32 +00:00
}