From ca1f9284909baf64c697bc8f5248a00c9bc219d9 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Mon, 11 Jan 2016 22:47:44 -0500 Subject: [PATCH] Fix wording on server create error --- app/Repositories/ServerRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Repositories/ServerRepository.php b/app/Repositories/ServerRepository.php index f398d4b1b..4b8f292db 100644 --- a/app/Repositories/ServerRepository.php +++ b/app/Repositories/ServerRepository.php @@ -257,7 +257,7 @@ class ServerRepository return $server->id; } catch (\GuzzleHttp\Exception\TransferException $ex) { DB::rollBack(); - throw new DisplayException('An error occured while attempting to update the configuration: ' . $ex->getMessage()); + throw new DisplayException('An error occured while attempting to create the server: ' . $ex->getMessage()); } catch (\Exception $ex) { DB::rollBack(); Log:error($ex);