File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
src/Liquid.Core/Exceptions Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 11using System ;
22using System . Diagnostics . CodeAnalysis ;
3- using System . Runtime . Serialization ;
43
54namespace Liquid . Core . Exceptions
65{
76 /// <summary>
87 /// Occurs when an exception is raised during data mapping.
98 /// </summary>
10- [ Serializable ]
119 [ ExcludeFromCodeCoverage ]
1210 public class DataMappingException : Exception
1311 {
@@ -34,14 +32,5 @@ public DataMappingException(string message) : base(message)
3432 public DataMappingException ( string message , Exception innerException ) : base ( message , innerException )
3533 {
3634 }
37-
38- /// <summary>
39- /// Initializes a new instance of the <see cref="DataMappingException"/> class with serialized data.
40- /// </summary>
41- /// <param name="info"></param>
42- /// <param name="context"></param>
43- public DataMappingException ( SerializationInfo info , StreamingContext context )
44- {
45- }
4635 }
4736}
You can’t perform that action at this time.
0 commit comments