namespace EnvelopeGenerator.Application.Exceptions; public class NotFoundException : Exception { public NotFoundException() { } public NotFoundException(string? message) : base(message) { } }