for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanedev\LogViewer\Exceptions;
/**
* Class LogNotFoundException
*
* @author ARCANEDEV <[email protected]>
*/
class LogNotFoundException extends LogViewerException
{
* Make the exception.
* @param string $date
* @return static
public static function make(string $date)
return new static("Log not found in this date [{$date}]");
}