test_support-1.0.x-dev/tests/src/Traits/Support/Exceptions/CronFailed.php
tests/src/Traits/Support/Exceptions/CronFailed.php
<?php
namespace Drupal\Tests\test_support\Traits\Support\Exceptions;
class CronFailed extends \Exception
{
public const NO_CRON_KEY_SET = 1;
public static function noCronKey(): self
{
return new static(
'No cron key has been set. Use `$this->setCronKey()` to set one.',
static::NO_CRON_KEY_SET
);
}
}
