using System.Runtime.Serialization; namespace DocumentOperator.Domain.Common.Exceptions; /// /// Exception thrown when a requested resource is not found. /// Maps to HTTP 404 Not Found in the API layer. /// public class NotFoundException : Exception { public NotFoundException() { } public NotFoundException(string? message) : base(message) { } public NotFoundException(string? message, Exception? innerException) : base(message, innerException) { } }