bug 11770: throw error when account is not found in default root domain

status 11770: resolved fixed
This commit is contained in:
kishan 2011-11-02 15:24:37 +05:30
parent daa7d41650
commit d601313b35
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}