diff options
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index d610c51..ce8aa23 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -84,7 +84,7 @@ namespace OpenSim.Framework.UserManagement | |||
84 | /// </summary> | 84 | /// </summary> |
85 | /// <param name="userID"></param> | 85 | /// <param name="userID"></param> |
86 | /// <returns></returns> | 86 | /// <returns></returns> |
87 | /// <exception cref='System.Net.WebException'>This will be thrown if there is a problem with the inventory service</exception> | 87 | /// <exception cref='System.Exception'>This will be thrown if there is a problem with the inventory service</exception> |
88 | protected abstract InventoryData GetInventorySkeleton(LLUUID userID); | 88 | protected abstract InventoryData GetInventorySkeleton(LLUUID userID); |
89 | 89 | ||
90 | /// <summary> | 90 | /// <summary> |
@@ -218,7 +218,7 @@ namespace OpenSim.Framework.UserManagement | |||
218 | { | 218 | { |
219 | inventData = GetInventorySkeleton(agentID); | 219 | inventData = GetInventorySkeleton(agentID); |
220 | } | 220 | } |
221 | catch (System.Net.WebException e) | 221 | catch (Exception e) |
222 | { | 222 | { |
223 | m_log.ErrorFormat( | 223 | m_log.ErrorFormat( |
224 | "[LOGIN END]: Error retrieving inventory skeleton of agent {0}, {1} - {2}", | 224 | "[LOGIN END]: Error retrieving inventory skeleton of agent {0}, {1} - {2}", |