From 7f441018754474bb031d613b37eee7eea3443684 Mon Sep 17 00:00:00 2001 From: Eric Wang <37554696+ericwang401@users.noreply.github.com> Date: Mon, 4 Mar 2024 15:57:25 -0600 Subject: [PATCH] Shorten exception messages --- .../Service/Server/Allocation/NoUniqueUuidComboException.php | 2 +- .../Service/Server/Allocation/NoUniqueVmidException.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.'); } }