vknet_vk/VkNet/Exception/VersionDeprecatedException.cs
Инютин Максим Николаевич 3b145a3327 Рефакторинг проекта
2025-09-09 01:02:47 +03:00

7 lines
No EOL
265 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace VkNet.Exception;
/// <summary>
/// Ошибка устаревшей версии API
/// </summary>
/// <param name="message">Сообщение об ошибке</param>
public class VersionDeprecatedException(string message) : VkApiException(message);