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