using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EnvelopeGenerator.Application.Exceptions;
///
///
///
public class CreateReportException : ApplicationException
{
///
///
///
///
public CreateReportException(string message)
: base(message) { }
///
///
///
///
///
public CreateReportException(string message, Exception innerException)
: base(message, innerException) { }
}