for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\AentGitLabCI\Exception;
use TheAentMachine\Exception\AenthillException;
final class JobException extends AenthillException
{
/**
* @param string $identifier
* @return self
*/
public static function cannotAddOnly(string $identifier): self
return new self("\"$identifier\" is already referenced in \"except\" section");
}
public static function cannotAddExcept(string $identifier): self
return new self("\"$identifier\" is already referenced in \"only\" section");
public static function branchIsNull(): self
return new self('"only" section cannot have a null entry');
* @param string $deployType
public static function unknownDeployType(string $deployType): self
return new self("\"$deployType\" is not a valid deploy type.");