szurubooru/src/Api/ApiJobUnsatisfiedException.php

11 lines
244 B
PHP
Raw Normal View History

<?php
class ApiJobUnsatisfiedException extends SimpleException
{
public function __construct(IJob $job, $arg = null)
{
2014-05-12 10:31:34 +02:00
parent::__construct('%s cannot be run due to unsatisfied execution conditions (%s).',
get_class($job),
$arg);
}
}