for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Vasoft\VersionIncrement\Exceptions;
class ChangesNotFoundException extends ApplicationException
{
protected int $applicationCode = 40;
public function __construct(?\Throwable $previous = null)
parent::__construct(
'Changes not found in repository from previous release',
$previous,
);
}