Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/CannotDeleteBackupFileException.cs
===================================================================
diff -u -r8e182435811ddd7f9cf29ae57f62b91a2ce5a29c -r49c5da81f49a23dd6e66526d264a08bf510e6963
--- Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/CannotDeleteBackupFileException.cs (.../CannotDeleteBackupFileException.cs) (revision 8e182435811ddd7f9cf29ae57f62b91a2ce5a29c)
+++ Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/CannotDeleteBackupFileException.cs (.../CannotDeleteBackupFileException.cs) (revision 49c5da81f49a23dd6e66526d264a08bf510e6963)
@@ -20,6 +20,7 @@
// All rights reserved.
using System;
+using System.Runtime.Serialization;
namespace Application.Ringtoets.Storage.Exceptions
{
@@ -50,5 +51,7 @@
/// The exception that is the cause of the current exception,
/// or a null reference if no inner exception is specified.
public CannotDeleteBackupFileException(string message, Exception inner) : base(message, inner) {}
+
+ protected CannotDeleteBackupFileException(SerializationInfo info, StreamingContext context) : base(info, context) {}
}
}
\ No newline at end of file