Skip to content

Commit

Permalink
Added TooManyFriendsException (#1619) (#1620)
Browse files Browse the repository at this point in the history
## Список изменений
- Добавлен TooManyFriendsException
  • Loading branch information
xiadosw authored Aug 28, 2024
1 parent 1a394bd commit feef559
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
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

0 comments on commit feef559

Please sign in to comment.