for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanedev\LaravelMetrics\Exceptions;
use InvalidArgumentException;
/**
* Class ExpressionNotFound
*
* @author ARCANEDEV <[email protected]>
*/
class ExpressionNotFound extends InvalidArgumentException
{
* Make a new exception.
* @param string $name
* @param string $driver
* @return \Arcanedev\LaravelMetrics\Exceptions\ExpressionNotFound
public static function make(string $name, string $driver)
return new static("Expression `{$name}` not found for `{$driver}` driver");
}