aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorTedd Hansen2008-02-14 01:35:17 +0000
committerTedd Hansen2008-02-14 01:35:17 +0000
commit5f70b8b922bb7003e22586d7f785c71b1b4d8fce (patch)
tree7c01ce0cddaf6a9fabcf3c255e6efd0541b5fa1b /OpenSim/Region
parentCleaned up some typos. (diff)
downloadopensim-SC_OLD-5f70b8b922bb7003e22586d7f785c71b1b4d8fce.zip
opensim-SC_OLD-5f70b8b922bb7003e22586d7f785c71b1b4d8fce.tar.gz
opensim-SC_OLD-5f70b8b922bb7003e22586d7f785c71b1b4d8fce.tar.bz2
opensim-SC_OLD-5f70b8b922bb7003e22586d7f785c71b1b4d8fce.tar.xz
Added a small but maybe important clue that UserServer is not running.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Communications/Local/LocalUserServices.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs
index 6192a7a..9811f8a 100644
--- a/OpenSim/Region/Communications/Local/LocalUserServices.cs
+++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs
@@ -97,7 +97,7 @@ namespace OpenSim.Region.Communications.Local
97 UserProfileData data = GetUserProfile(uuid); 97 UserProfileData data = GetUserProfile(uuid);
98 if (data == null) 98 if (data == null)
99 { 99 {
100 throw new Exception("Unknown master user UUID"); 100 throw new Exception("Unknown master user UUID. Possible reason: UserServer is not running.");
101 } 101 }
102 return data; 102 return data;
103 } 103 }