pcut_uwp/PCUT/Http.Core/Exceptions/AppOutdatedException.cs

14 lines
292 B
C#
Raw Normal View History

2024-10-30 10:00:07 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Http.Core.Exceptions
{
public class AppOutdatedException : Exception
{
public AppOutdatedException() : base() { }
public AppOutdatedException(string message) : base(message) { }
}
}