mirror of
https://github.com/vknet/vk.git
synced 2026-07-12 09:28:26 +00:00
26 lines
No EOL
635 B
C#
26 lines
No EOL
635 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using VkNet.Model;
|
|
using VkNet.Utils;
|
|
|
|
namespace VkNet.Exception;
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Ключ доступа приложения недействителен.
|
|
/// Код ошибки - 28
|
|
/// </summary>
|
|
[Serializable]
|
|
[VkError(VkErrorCode.AppKeyInvalid)]
|
|
public class AppKeyInvalidException : VkApiMethodInvokeException
|
|
{
|
|
/// <inheritdoc />
|
|
public AppKeyInvalidException(VkError response) : base(response)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected AppKeyInvalidException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(new())
|
|
{
|
|
}
|
|
} |