CouldNotGetVersionException.php 251 B

12345678910111213
  1. <?php
  2. namespace App\Exceptions;
  3. use RuntimeException;
  4. class CouldNotGetVersionException extends RuntimeException
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct("Could not get version string (`git describe` failed)");
  9. }
  10. }