mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
11 lines
187 B
PHP
11 lines
187 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
class InvalidVersionNumberException extends Exception
|
||
|
{
|
||
|
protected $message = 'The version number is an invalid semantic version.';
|
||
|
}
|