mirror of
https://github.com/vknet/vk.git
synced 2026-07-19 04:43:30 +00:00
26 lines
No EOL
735 B
C#
26 lines
No EOL
735 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using VkNet.Model;
|
|
using VkNet.Utils;
|
|
|
|
namespace VkNet.Exception;
|
|
|
|
/// <summary>
|
|
/// Исключение, которое выбрасывается, если доступ к комментированию записи
|
|
/// запрещен.
|
|
/// Код ошибки - 213
|
|
/// </summary>
|
|
[Serializable]
|
|
[VkError(VkErrorCode.AccessToCommentDenied)]
|
|
public sealed class AccessToCommentDeniedException : VkApiMethodInvokeException
|
|
{
|
|
/// <inheritdoc />
|
|
public AccessToCommentDeniedException(VkError response) : base(response)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
private AccessToCommentDeniedException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(new())
|
|
{
|
|
}
|
|
} |