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