for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smart\EtlBundle\Exception\Extractor;
/**
* Exception thrown when the entity identifier had already been added to the process entities
*
* @author Mathieu Ducrot <[email protected]>
*/
class EntityIdentifierAlreadyProcessException extends ExtractException
{
* @param string $entityType
* @return EntityIdentifierAlreadyProcessException
public static function create($entityType)
return new self(
sprintf(
'Entity type "%s" already registered',
$entityType
)
);
}