14 lines
292 B
C#
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) { }
|
|||
|
}
|
|||
|
}
|