Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added TooManyFriendsException (#1619) #1620

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions VkNet/Exception/TooManyFriendsException.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using System;
using System.Runtime.Serialization;
using VkNet.Model;
using VkNet.Utils;

namespace VkNet.Exception;

/// <summary>
/// Исключение, которое выбрасывается при превышении лимита друзей.
/// Код ошибки - 242
/// </summary>
[Serializable]
[VkError(VkErrorCode.TooManyFriends)]
public sealed class TooManyFriendsException : VkApiMethodInvokeException
{
/// <inheritdoc />
public TooManyFriendsException(VkError response) : base(response)
{
}

/// <inheritdoc />
private TooManyFriendsException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(new())
{

}
}
5 changes: 5 additions & 0 deletions VkNet/Utils/VkErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,11 @@ public static class VkErrorCode
/// </summary>
public const int TooManyAdsPosts = 224;

/// <summary>
/// Превышен лимит друзей
/// </summary>
public const int TooManyFriends = 242;

/// <summary>
/// Доступ к списку групп запрещен из-за настроек конфиденциальности пользователя.
/// </summary>
Expand Down
Loading