PIbd-31_Belianin.N.N_COP_8/Lab 1/Belianin_1/MyCustomComponents/Extensions/PropertyNullException.cs
2024-10-21 02:08:06 +04:00

18 lines
415 B
C#

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