2018-11-06 13:17:19 +01:00

9 lines
113 B
PHP

<?php
class Bad_PHP_Job
{
public function perform()
{
throw new Exception('Unable to run this job!');
}
}
?>