<?php
declare(strict_types=1);
namespace GitList\SCM\Exception;
use RuntimeException;
class CommandException extends RuntimeException
{
public function isNotFoundException()
{
return str_contains($this->message, 'does not exist');
}
}