namespace Services.Support.Exceptions; public class ReportDataNotFoundException : EntityNotFoundException { public ReportDataNotFoundException(string message) : base(message) { } public ReportDataNotFoundException(string message, Exception innerException) : base(message, innerException) { } }