Skip to content

Commit ca1f928

Browse files
committed
Fix wording on server create error
1 parent f8d13e3 commit ca1f928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Repositories/ServerRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public function create(array $data)
257257
return $server->id;
258258
} catch (\GuzzleHttp\Exception\TransferException $ex) {
259259
DB::rollBack();
260-
throw new DisplayException('An error occured while attempting to update the configuration: ' . $ex->getMessage());
260+
throw new DisplayException('An error occured while attempting to create the server: ' . $ex->getMessage());
261261
} catch (\Exception $ex) {
262262
DB::rollBack();
263263
Log:error($ex);

0 commit comments

Comments
 (0)