base logic #5

Merged
mfnefd merged 25 commits from registration into main 2024-06-10 12:27:55 +04:00
Showing only changes of commit 57f90eaa82 - Show all commits

View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.Exceptions
{
public class ElementNotFoundException : Exception
{
public ElementNotFoundException() : base("Element not founded.")
{
}
public ElementNotFoundException(string message) : base(message)
{
}
public ElementNotFoundException(string message, Exception inner) : base(message, inner)
{
}
}
}