for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ScayTrase\Api\Cruds\Exception;
class EntityNotFoundException extends \InvalidArgumentException implements CrudsExceptionInterface
{
public static function byIdentifier($identifier)
return new static(sprintf('Entity not found by given identifier: %s', json_encode($identifier)));
}