Skip to content

Commit

Permalink
Shorten exception messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Mar 4, 2024
1 parent 1b1e62c commit 7f44101
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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.');
}
}

0 comments on commit 7f44101

Please sign in to comment.