From d601313b356433f7b6d2a384abd173b6b50b3e7c Mon Sep 17 00:00:00 2001 From: kishan Date: Wed, 2 Nov 2011 15:24:37 +0530 Subject: [PATCH] bug 11770: throw error when account is not found in default root domain status 11770: resolved fixed --- server/src/com/cloud/server/ManagementServerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/server/ManagementServerImpl.java b/server/src/com/cloud/server/ManagementServerImpl.java index a1aa48c2317..5928e4ac45d 100755 --- a/server/src/com/cloud/server/ManagementServerImpl.java +++ b/server/src/com/cloud/server/ManagementServerImpl.java @@ -2111,7 +2111,7 @@ public class ManagementServerImpl implements ManagementServer { if (userAccount != null) { accountId = userAccount.getId(); } else { - throw new InvalidParameterValueException("Unable to find account " + accountName + " in domain " + domainId); + throw new InvalidParameterValueException("DomainId is not specified. Unable to find account " + accountName + " in default root domain " + domainId); } } }