diff --git a/EnvelopeGenerator.Application/Exceptions/NotFoundException.cs b/EnvelopeGenerator.Application/Exceptions/NotFoundException.cs
index 2e887b44..67b58ef3 100644
--- a/EnvelopeGenerator.Application/Exceptions/NotFoundException.cs
+++ b/EnvelopeGenerator.Application/Exceptions/NotFoundException.cs
@@ -1,11 +1,21 @@
namespace EnvelopeGenerator.Application.Exceptions;
+///
+/// Represents an exception that is thrown when a requested resource is not found.
+///
public class NotFoundException : Exception
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
public NotFoundException()
{
}
+ ///
+ /// Initializes a new instance of the class with a specified error message.
+ ///
+ /// The message that describes the error.
public NotFoundException(string? message) : base(message)
{
}