new_presence/data/Exceptions/RepositoryException.cs
2024-11-16 11:29:24 +03:00

10 lines
441 B
C#
Raw Permalink 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 data.Exception
{
// Конструктор класса RepositoryException.
public class RepositoryException : IOException
{
// Передаем сообщение об ошибке в базовый класс IOException
public RepositoryException(string message) : base(message) { }
}
}