demo_trade/Exceptions/AutorizeException.cs

14 lines
281 B
C#
Raw Permalink Normal View History

2024-10-04 12:41:04 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace demo_trade.Exceptions
{
class AutorizeException : Exception
{
public AutorizeException(string message) : base(message) { }
}
}