From 5f70b8b922bb7003e22586d7f785c71b1b4d8fce Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Thu, 14 Feb 2008 01:35:17 +0000 Subject: [PATCH] Added a small but maybe important clue that UserServer is not running. --- OpenSim/Region/Communications/Local/LocalUserServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 6192a7af4a..9811f8ae00 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -97,7 +97,7 @@ namespace OpenSim.Region.Communications.Local UserProfileData data = GetUserProfile(uuid); if (data == null) { - throw new Exception("Unknown master user UUID"); + throw new Exception("Unknown master user UUID. Possible reason: UserServer is not running."); } return data; }