using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DD.Persistence.Client.CustomExceptions;
///
/// Ошибка, которая выбрасывается в случае отсутствия необходимого свойства в appsettings.json
///
public class AppSettingsPropertyNotFoundException : Exception
{
///
///
///
///
public AppSettingsPropertyNotFoundException(string message)
: base(message) { }
}