098f11bd09
- Removed Abstract*Job hierarchy - Introduced EntityRetrievers - Introduced JobPager - Moved files around
10 lines
244 B
PHP
10 lines
244 B
PHP
<?php
|
|
class ApiJobUnsatisfiedException extends SimpleException
|
|
{
|
|
public function __construct(IJob $job, $arg = null)
|
|
{
|
|
parent::__construct('%s cannot be run due to unsatisfied execution conditions (%s).',
|
|
get_class($job),
|
|
$arg);
|
|
}
|
|
}
|