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

8 lines
244 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 StorageException(string message) : Exception(message) { }