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 FilesystemException
*
* @author ARCANEDEV <[email protected]>
*/
class FilesystemException extends LogViewerException
{
public static function cannotDeleteLog()
return new static('There was an error deleting the log.');
}
public static function invalidPath(string $path)
return new static("The log(s) could not be located at : $path");