mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
21 lines
No EOL
535 B
C#
21 lines
No EOL
535 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace VkNet.Exception;
|
|
|
|
/// <summary>
|
|
/// Исключение, выбрасываемое при выходе за лимит кнопок в клавиатуре
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class TooMuchButtonsException : VkApiException
|
|
{
|
|
/// <inheritdoc />
|
|
public TooMuchButtonsException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
private TooMuchButtonsException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
{
|
|
}
|
|
} |