From 1051c5356fef3f1b29c3444b11d9c9a1fda874e9 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 6 Nov 2025 21:52:35 +0100 Subject: [PATCH] add CreateReportException --- .../Exceptions/CreateReportException.cs | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 EnvelopeGenerator.Application/Exceptions/CreateReportException.cs diff --git a/EnvelopeGenerator.Application/Exceptions/CreateReportException.cs b/EnvelopeGenerator.Application/Exceptions/CreateReportException.cs new file mode 100644 index 00000000..0810a7f9 --- /dev/null +++ b/EnvelopeGenerator.Application/Exceptions/CreateReportException.cs @@ -0,0 +1,28 @@ +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) { } +} \ No newline at end of file