Files
PIbd-32_BuslaevRoman_KOP/WinFormsControlLibrary1/Exceptions/ComponentValidationException.cs

17 lines
407 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinFormsControlLibrary1.Exceptions;
public partial class ComponentValidationException : Exception
{
public ComponentValidationException(string message) : base(message) { }
}