aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-05-18 18:44:55 +0000
committerJustin Clarke Casey2009-05-18 18:44:55 +0000
commit1cc9d1fd8dbe18ea74d9bcd5a7c3ff0c452499e7 (patch)
treeaf9377a55fecdfca60c05958126a916631d87067 /OpenSim/Region/CoreModules
parent* Resolve http://opensimulator.org/mantis/view.php?id=3191 (diff)
downloadopensim-SC_OLD-1cc9d1fd8dbe18ea74d9bcd5a7c3ff0c452499e7.zip
opensim-SC_OLD-1cc9d1fd8dbe18ea74d9bcd5a7c3ff0c452499e7.tar.gz
opensim-SC_OLD-1cc9d1fd8dbe18ea74d9bcd5a7c3ff0c452499e7.tar.bz2
opensim-SC_OLD-1cc9d1fd8dbe18ea74d9bcd5a7c3ff0c452499e7.tar.xz
* minor: another attempt at http://opensimulator.org/mantis/view.php?id=3191
* didn't realize that we were getting back plain old exceptions
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
index e3d2aee..a3ec419 100644
--- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
+++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
@@ -449,7 +449,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
449 } 449 }
450 catch (Exception e) 450 catch (Exception e)
451 { 451 {
452 throw new Exception(String.Format("Unable to create file input stream for {0}: {1}", path, e)); 452 throw new Exception(String.Format("Unable to create file input stream for {0}: {1}", path, e.Message));
453 } 453 }
454 } 454 }
455 455