Skip to content

Commit

Permalink
Merge branch 'main' into feat/org-token-scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarne authored Nov 26, 2024
2 parents eb99f62 + bcfe7a7 commit 016cfd5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
9 changes: 9 additions & 0 deletions src/Notifications/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[API/**/*.cs]
# Ignore CS8632: The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
# because the API project uses nullable reference types, but is copied to a context where we don't use them.
dotnet_diagnostic.CS8632.severity = none

[Core/**/*.cs]
# Ignore CS8632: The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
# because the Core project uses nullable reference types, but is copied to a context where we don't use them.
dotnet_diagnostic.CS8632.severity = none
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
using System;
using System.Runtime.Serialization;

namespace Altinn.Platform.Register.Core
{
/// <summary>
/// Represents a situation where a user has performed too many failed lookup requests.
/// </summary>
[Serializable]
public class TooManyFailedLookupsException : Exception
{
/// <summary>
Expand All @@ -24,14 +20,5 @@ public TooManyFailedLookupsException(string message)
: base(message)
{
}

/// <summary>
/// Initialize a new instance of the <see cref="TooManyFailedLookupsException"/> class using the
/// given <see cref="SerializationInfo"/>.
/// </summary>
protected TooManyFailedLookupsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}

0 comments on commit 016cfd5

Please sign in to comment.