diff --git a/app/Exceptions/Service/Server/Allocation/NoUniqueUuidComboException.php b/app/Exceptions/Service/Server/Allocation/NoUniqueUuidComboException.php index e2f247bf420..f86c3cc9059 100644 --- a/app/Exceptions/Service/Server/Allocation/NoUniqueUuidComboException.php +++ b/app/Exceptions/Service/Server/Allocation/NoUniqueUuidComboException.php @@ -8,6 +8,6 @@ class NoUniqueUuidComboException extends DisplayException { public function __construct() { - parent::__construct('There is no available VMID to use for the server creation process.'); + parent::__construct('There is no available VMID to use.'); } } diff --git a/app/Exceptions/Service/Server/Allocation/NoUniqueVmidException.php b/app/Exceptions/Service/Server/Allocation/NoUniqueVmidException.php index 4db3a876af4..ca8e8f8c33b 100644 --- a/app/Exceptions/Service/Server/Allocation/NoUniqueVmidException.php +++ b/app/Exceptions/Service/Server/Allocation/NoUniqueVmidException.php @@ -8,6 +8,6 @@ class NoUniqueVmidException extends DisplayException { public function __construct() { - parent::__construct('There is no available VMID to use for the server creation process.'); + parent::__construct('There is no available VMID to use.'); } }