Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps/FeatureRepository.cs =================================================================== diff -u -r4539 -r4805 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps/FeatureRepository.cs (.../FeatureRepository.cs) (revision 4539) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Maps/FeatureRepository.cs (.../FeatureRepository.cs) (revision 4805) @@ -106,14 +106,7 @@ } var repository = new FeatureRepository(); - try - { - FeatureImporter.ImportFromShapeFile(shapeFileLocation, repository); - } - catch (Exception e) - { - throw e; - } + FeatureImporter.ImportFromShapeFile(shapeFileLocation, repository); return repository; } @@ -274,14 +267,7 @@ private void AddToSpatialIndex(IFeature feature) { - try - { - spatialIndex.Insert(feature.Geometry.EnvelopeInternal, feature); - } - catch (Exception e) - { - throw e; - } + spatialIndex.Insert(feature.Geometry.EnvelopeInternal, feature); } private void RemoveFromSpatialIndex(IFeature feature) Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Sensors/SensorImportFromExcelSheet.cs =================================================================== diff -u -r4539 -r4805 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Sensors/SensorImportFromExcelSheet.cs (.../SensorImportFromExcelSheet.cs) (revision 4539) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/Sensors/SensorImportFromExcelSheet.cs (.../SensorImportFromExcelSheet.cs) (revision 4805) @@ -247,7 +247,7 @@ throw new InvalidOperationException(message, ioe); } - throw ioe; + throw; } catch (Exception e) { Index: DamClients/DamUI/trunk/src/Dam/Tools/CsvToDamxConverter/Program.cs =================================================================== diff -u -r4539 -r4805 --- DamClients/DamUI/trunk/src/Dam/Tools/CsvToDamxConverter/Program.cs (.../Program.cs) (revision 4539) +++ DamClients/DamUI/trunk/src/Dam/Tools/CsvToDamxConverter/Program.cs (.../Program.cs) (revision 4805) @@ -402,7 +402,7 @@ throw new InvalidOperationException(message, ioe); } - throw ioe; + throw; } catch (Exception e) {