for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amock\Parser\Exception;
use InvalidArgumentException;
class InvalidParserException extends InvalidArgumentException
{
public function __construct(string $type)
parent::__construct(sprintf('Invalid parser type provided: %s', $type));
}