PIbd-31_Kryukov.A.I._COP_9/COP/KryukovLib/NotFilledException.cs

16 lines
406 B
C#
Raw Normal View History

2024-09-22 10:42:52 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KryukovLib
{
public class NotFilledException : Exception
{
public NotFilledException() {}
public NotFilledException(string message) : base(message) {}
public NotFilledException(string message, Exception inner) : base(message, inner) {}
}
}