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