-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
## Список изменений - Добавлен TooManyFriendsException
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()) | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters