for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Signifly\Responder\Exceptions;
use Exception;
class ResourceNotFoundException extends Exception
{
public static function for(string $resourceClass): self
return new self(
sprintf('The resource `%s` could not be found.', $resourceClass)
);
}