Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLine.cs =================================================================== diff -u -r2118 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLine.cs (.../PolyLine.cs) (revision 2118) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLine.cs (.../PolyLine.cs) (revision 2127) @@ -27,19 +27,6 @@ namespace Deltares.DamEngine.Data.General { - /// - /// Exception class for poly line - /// - /// - public class PolyLineException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public PolyLineException(string message) : base(message) { } - } - public class PolyLine where T : GeometryPoint, new() { protected IList points; Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs =================================================================== diff -u -r2118 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs (.../Dike.cs) (revision 2118) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Dike.cs (.../Dike.cs) (revision 2127) @@ -35,19 +35,6 @@ namespace Deltares.DamEngine.Data.General { /// - /// Exception class for the Dike class - /// - /// - public class DikeException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public DikeException(string message) : base(message) { } - } - - /// /// Class for the dike parameter names /// public class DikeParameterNames Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDoc.cs =================================================================== diff -u -r2118 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDoc.cs (.../MStabXmlDoc.cs) (revision 2118) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDoc.cs (.../MStabXmlDoc.cs) (revision 2127) @@ -34,19 +34,6 @@ namespace Deltares.DamEngine.Calculators.KernelWrappers.DamMacroStabilityCommon { /// - /// Class for raising specified exceptions for MStabXmlDoc objects - /// - /// - public class MStabXmlDocException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public MStabXmlDocException(string message) : base(message) { } - } - - /// /// Class for creating the xml-file for stability calculations using DGeoStability Delphi. /// public static class MStabXmlDoc Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Deltares.DamEngine.Data.csproj =================================================================== diff -u -r2113 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Data/Deltares.DamEngine.Data.csproj (.../Deltares.DamEngine.Data.csproj) (revision 2113) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Deltares.DamEngine.Data.csproj (.../Deltares.DamEngine.Data.csproj) (revision 2127) @@ -40,8 +40,10 @@ + + @@ -97,6 +99,7 @@ + Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverterException.cs =================================================================== diff -u --- DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverterException.cs (revision 0) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverterException.cs (revision 2127) @@ -0,0 +1,37 @@ +// Copyright (C) Stichting Deltares 2019. All rights reserved. +// +// This file is part of the Dam Engine. +// +// The Dam Engine is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; + +namespace Deltares.DamEngine.Data.Geometry +{ + /// + /// Exception class for . + /// + public class CoordinateSystemConverterException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public CoordinateSystemConverterException(string message) : base(message) { } + } +} Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDocException.cs =================================================================== diff -u --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDocException.cs (revision 0) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamMacroStabilityCommon/MStabXmlDocException.cs (revision 2127) @@ -0,0 +1,38 @@ +// Copyright (C) Stichting Deltares 2019. All rights reserved. +// +// This file is part of the Dam Engine. +// +// The Dam Engine is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; + +namespace Deltares.DamEngine.Calculators.KernelWrappers.DamMacroStabilityCommon +{ + /// + /// Class for raising specified exceptions for MStabXmlDoc objects + /// + /// + public class MStabXmlDocException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public MStabXmlDocException(string message) : base(message) { } + } +} Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs =================================================================== diff -u --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs (revision 0) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/DikeException.cs (revision 2127) @@ -0,0 +1,38 @@ +// Copyright (C) Stichting Deltares 2019. All rights reserved. +// +// This file is part of the Dam Engine. +// +// The Dam Engine is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; + +namespace Deltares.DamEngine.Data.General +{ + /// + /// Exception class for the Dike class + /// + /// + public class DikeException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public DikeException(string message) : base(message) { } + } +} Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLineException.cs =================================================================== diff -u --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLineException.cs (revision 0) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/PolyLineException.cs (revision 2127) @@ -0,0 +1,38 @@ +// Copyright (C) Stichting Deltares 2019. All rights reserved. +// +// This file is part of the Dam Engine. +// +// The Dam Engine is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; + +namespace Deltares.DamEngine.Data.General +{ + /// + /// Exception class for poly line + /// + /// + public class PolyLineException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public PolyLineException(string message) : base(message) { } + } +} Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/Deltares.DamEngine.Calculators.csproj =================================================================== diff -u -r2126 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/Deltares.DamEngine.Calculators.csproj (.../Deltares.DamEngine.Calculators.csproj) (revision 2126) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/Deltares.DamEngine.Calculators.csproj (.../Deltares.DamEngine.Calculators.csproj) (revision 2127) @@ -98,6 +98,7 @@ + @@ -197,6 +198,7 @@ + Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculatorException.cs =================================================================== diff -u --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculatorException.cs (revision 0) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculatorException.cs (revision 2127) @@ -0,0 +1,37 @@ +// Copyright (C) Stichting Deltares 2019. All rights reserved. +// +// This file is part of the Dam Engine. +// +// The Dam Engine is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System; + +namespace Deltares.DamEngine.Calculators.Uplift +{ + /// + /// Exception class for SoilVolumicMassCalculator + /// + public class SoilVolumicMassCalculatorException : Exception + { + /// + /// Initializes a new instance of the class. + /// + /// The message that describes the error. + public SoilVolumicMassCalculatorException(string message) : base(message) { } + } +} Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverter.cs =================================================================== diff -u -r2118 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverter.cs (.../CoordinateSystemConverter.cs) (revision 2118) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/CoordinateSystemConverter.cs (.../CoordinateSystemConverter.cs) (revision 2127) @@ -24,18 +24,6 @@ namespace Deltares.DamEngine.Data.Geometry { /// - /// Exception class for . - /// - public class CoordinateSystemConverterException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public CoordinateSystemConverterException(string message) : base(message) { } - } - - /// /// class for converting object coordinates from global to local system and back. /// /// Converter assumes all points of the given line are in the same vertical Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculator.cs =================================================================== diff -u -r2118 -r2127 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculator.cs (.../SoilVolumicMassCalculator.cs) (revision 2118) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/Uplift/SoilVolumicMassCalculator.cs (.../SoilVolumicMassCalculator.cs) (revision 2127) @@ -28,18 +28,6 @@ namespace Deltares.DamEngine.Calculators.Uplift { /// - /// Exception class for SoilVolumicMassCalculator - /// - public class SoilVolumicMassCalculatorException : Exception - { - /// - /// Initializes a new instance of the class. - /// - /// The message that describes the error. - public SoilVolumicMassCalculatorException(string message) : base(message) { } - } - - /// /// Calculation class to determine weight of the soil between TopOfLayerToBeEvaluated and SurfaceLevel /// public class SoilVolumicMassCalculator