for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Eclipxe\Enum\Exceptions;
use Throwable;
class ValueNotFoundException extends GenericNotFoundException
{
public static function create(string $className, string $value, Throwable $previous = null): self
// StatusEnum value x was not found
return new self(static::formatGenericMessage($className, 'value', $value), 0, $previous);
}