for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\JsonGuard\Exceptions;
class ConstraintNotFoundException extends \Exception
{
public static function forRule($rule)
return new static(sprintf('The constraint for "%s" was not found.', $rule));
}