* didn't realize that we were getting back plain old exceptions
This commit is contained in:
Justin Clarke Casey
2009-05-18 18:44:55 +00:00
parent 29671fc103
commit 1cc9d1fd8d
2 changed files with 10 additions and 21 deletions

View File

@@ -449,7 +449,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver
}
catch (Exception e)
{
throw new Exception(String.Format("Unable to create file input stream for {0}: {1}", path, e));
throw new Exception(String.Format("Unable to create file input stream for {0}: {1}", path, e.Message));
}
}