Clarify error messaging for transfers

This commit is contained in:
Dane Everitt
2020-12-24 10:14:10 -08:00
parent a2548c14ac
commit 6c39288def
5 changed files with 8 additions and 5 deletions

View File

@@ -7,8 +7,11 @@ use Symfony\Component\HttpKernel\Exception\HttpException;
class ServerTransferringException extends HttpException
{
/**
* ServerTransferringException constructor.
*/
public function __construct()
{
parent::__construct(Response::HTTP_CONFLICT, 'Server is currently being transferred.');
parent::__construct(Response::HTTP_CONFLICT, 'This server is currently being transferred to a new machine, please try again laster.');
}
}