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