using System; namespace _0_Framework.Exceptions; public class NotFoundException:Exception { public NotFoundException(string message) : base(message) { } public NotFoundException(string name, object key) : base($"Entity \"{name}\" ({key}) was not found.") { } }