Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.StixFileReader/StixFileReader.cs =================================================================== diff -u -r6582 -r6583 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.StixFileReader/StixFileReader.cs (.../StixFileReader.cs) (revision 6582) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.StixFileReader/StixFileReader.cs (.../StixFileReader.cs) (revision 6583) @@ -19,11 +19,11 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using System.IO; using Components.Persistence.Stability.Version2; using Components.Persistence.Stability.Version2.Data; using Deltares.Geotechnics.Soils; -using DGeoSuite.Components.Persistence; namespace Deltares.Dam.StixFileReader; @@ -47,7 +47,6 @@ } using var dataModelReader = new PersistenceFactory().CreateArchiveReader(filePath); - // using Components.Persistence.Stability.Version2.Reader dataModelReader = new PersistenceFactory().CreateArchiveReader(filePath); PersistableDataModel dataModel = dataModelReader.Read(); VerifyReadData(dataModel); @@ -60,7 +59,7 @@ { if (dataModel.Info == null) { - throw new DGeoSuite.Components.Persistence.StorageReadException($"Could not successfully read {typeof(PersistableDataModel)} from file."); + throw new Exception($"Could not successfully read {typeof(PersistableDataModel)} from file."); } } } \ No newline at end of file