10 lines
337 B
C#
10 lines
337 B
C#
using Services.Support.Exceptions;
|
|
|
|
namespace Services.Support;
|
|
|
|
public class ReportDataNotFoundException : EntityNotFoundException
|
|
{
|
|
public ReportDataNotFoundException(string message) : base(message) { }
|
|
public ReportDataNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
} |