Skip to content

Commit b342a87

Browse files
fix: sonar issues.
1 parent 1290ab4 commit b342a87

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/Liquid.Core/Exceptions/DataMappingException.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
using System;
22
using System.Diagnostics.CodeAnalysis;
3-
using System.Runtime.Serialization;
43

54
namespace 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
}

0 commit comments

Comments
 (0)