Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/EntityNotFoundException.cs =================================================================== diff -u -rf62076c7d8b6a65856fbab6a1b34b4234aa319e5 -r49c5da81f49a23dd6e66526d264a08bf510e6963 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/EntityNotFoundException.cs (.../EntityNotFoundException.cs) (revision f62076c7d8b6a65856fbab6a1b34b4234aa319e5) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Exceptions/EntityNotFoundException.cs (.../EntityNotFoundException.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 EntityNotFoundException(string message, Exception inner) : base(message, inner) {} + + protected EntityNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) {} } } \ No newline at end of file