Files
bunny-cli/app/Bunny/Lock/Exceptions/LockException.php
2021-07-22 17:28:09 +02:00

14 lines
268 B
PHP

<?php
namespace App\Bunny\Lock\Exceptions;
use Exception;
class LockException extends Exception
{
public static function fromInvalidVersion($version): self
{
return new self(sprintf('Your lock file version %s is not supported.', $version));
}
}