diff options
author | Justin Clarke Casey | 2008-03-22 21:19:45 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-22 21:19:45 +0000 |
commit | 170e1a8a094e60ea3ca7aedcc6f6b860a500d946 (patch) | |
tree | 4dda5de9512c8923c8522d9b629dc5d135cb5678 /OpenSim | |
parent | * Catch the occasional resolution exception that comes out of SceneCommunicat... (diff) | |
download | opensim-SC_OLD-170e1a8a094e60ea3ca7aedcc6f6b860a500d946.zip opensim-SC_OLD-170e1a8a094e60ea3ca7aedcc6f6b860a500d946.tar.gz opensim-SC_OLD-170e1a8a094e60ea3ca7aedcc6f6b860a500d946.tar.bz2 opensim-SC_OLD-170e1a8a094e60ea3ca7aedcc6f6b860a500d946.tar.xz |
* Make master UUID exception a bit more useful by telling us which uuid it was trying to look up
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index bb74e22..43b3939 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -258,10 +258,12 @@ namespace OpenSim.Region.Communications.OGS1 | |||
258 | public UserProfileData SetupMasterUser(LLUUID uuid) | 258 | public UserProfileData SetupMasterUser(LLUUID uuid) |
259 | { | 259 | { |
260 | UserProfileData data = GetUserProfile(uuid); | 260 | UserProfileData data = GetUserProfile(uuid); |
261 | |||
261 | if (data == null) | 262 | if (data == null) |
262 | { | 263 | { |
263 | throw new Exception("[OGS1 USER SERVICES]: Unknown master user UUID"); | 264 | throw new Exception("[OGS1 USER SERVICES]: Unknown master user " + uuid); |
264 | } | 265 | } |
266 | |||
265 | return data; | 267 | return data; |
266 | } | 268 | } |
267 | 269 | ||