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

14 lines
292 B
C#

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) { }
}
}