KOP/Components/Exceptions/UncheckedNullException.cs

15 lines
338 B
C#
Raw Normal View History

2024-10-03 23:07:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Components.Exceptions
2024-10-03 23:07:05 +04:00
{
public class UncheckedNullException : Exception
{
public UncheckedNullException() { }
public UncheckedNullException(string message) : base(message) { }
}
}