using System; using System.Runtime.Serialization; namespace Deltares.DamEngine.Calculators.KernelWrappers.DamMacroStability.Assemblers { [Serializable] public class DtoAssemblerConversionException : Exception { // // For guidelines regarding the creation of new exception types, see // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp // and // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp // public DtoAssemblerConversionException() { } public DtoAssemblerConversionException(string message) : base(message) { } public DtoAssemblerConversionException(string message, Exception inner) : base(message, inner) { } protected DtoAssemblerConversionException( SerializationInfo info, StreamingContext context) : base(info, context) { } } }