Files
PIBD-23_Coursework_Bank/TheBank/BankContracts/Exceptions/ElementExistsException.cs
DjonniStorm e909fa709f feat: создание проекта бд
добавление моделек для бд (кроме многие ко многим), реализация одного контракта хранилища
2025-04-25 01:12:51 +04:00

9 lines
344 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace BankContracts.Exceptions;
/// <summary>
/// Исключение при работе с хранилищем
/// при добавлении существующего элемента
/// </summary>
/// <param name="message">сообщение</param>
public class ElementExistsException(string message) : Exception(message) { }