for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Obblm\Core\Exception;
class NotFoundKeyException extends \InvalidArgumentException implements ExceptionInterface
{
public function __construct(string $expectedKey, string $property, string $type)
parent::__construct(sprintf('Expected key "%s" not found in "%s" property in %s.', $expectedKey, $property, $type));
}