mirror of
https://github.com/anonaddy/anonaddy
synced 2026-04-26 01:25:06 +02:00
14 lines
251 B
PHP
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)");
|
|
}
|
|
}
|