PIbd-31_Shanygin.A.V._COP_27/ComponentOrientedProgramming/CreateVisualComponent/Exceptions/NotFilledException.cs

16 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CreateVisualComponent.Exceptions
{
public class NotFilledException : Exception
{
public NotFilledException() { }
public NotFilledException(string message) : base(message) { }
public NotFilledException(string message, Exception inner) : base(message, inner) { }
}
}