Skip to content

Commit

Permalink
Remove obsolete Serializable attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurpanik committed Jul 24, 2024
1 parent e426928 commit af3bde5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Gldf.Net/Exceptions/GldfContainerException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Gldf.Net.Exceptions;

[Serializable, ExcludeFromCodeCoverage]
[ExcludeFromCodeCoverage]
public class GldfContainerException : GldfException
{
public GldfContainerException()
Expand Down
2 changes: 1 addition & 1 deletion src/Gldf.Net/Exceptions/GldfException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Gldf.Net.Exceptions;

[Serializable, ExcludeFromCodeCoverage]
[ExcludeFromCodeCoverage]
public class GldfException : Exception
{
public GldfException()
Expand Down
2 changes: 1 addition & 1 deletion src/Gldf.Net/Exceptions/GldfValidationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Gldf.Net.Exceptions;

[Serializable, ExcludeFromCodeCoverage]
[ExcludeFromCodeCoverage]
public class GldfValidationException : Exception
{
public GldfValidationException()
Expand Down
2 changes: 1 addition & 1 deletion src/Gldf.Net/Exceptions/RootNotFoundException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Gldf.Net.Exceptions;

[Serializable, ExcludeFromCodeCoverage]
[ExcludeFromCodeCoverage]
public class RootNotFoundException : GldfContainerException
{
public RootNotFoundException()
Expand Down
2 changes: 1 addition & 1 deletion src/Gldf.Net/Exceptions/UnreadableZipException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Gldf.Net.Exceptions;

[Serializable, ExcludeFromCodeCoverage]
[ExcludeFromCodeCoverage]
public class UnreadableZipException : GldfContainerException
{
public UnreadableZipException()
Expand Down

0 comments on commit af3bde5

Please sign in to comment.