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)
{
}
}