Files
anonaddy/app/Exceptions/CouldNotGetVersionException.php
2022-07-07 08:44:47 +01:00

14 lines
251 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
class CouldNotGetVersionException extends RuntimeException
{
public function __construct()
{
parent::__construct("Could not get version string (`git describe` failed)");
}
}