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;
abstract class ApplicationException extends \Exception
{
public const DEFAULT_CODE = 500;
protected int $applicationCode = 500;
public function __construct(string $message = '', ?\Throwable $previous = null)
parent::__construct($message, $this->applicationCode, $previous);
}