namespace Liber_Incantamentum.Application.Exceptions { public class NotFoundException : Exception { public NotFoundException() { } public NotFoundException(string message) : base(message) { } public NotFoundException(string? message, Exception? innerException) : base(message, innerException) { } } }