namespace AppException { [Serializable] public class RecipeNotFoundException : Exception { public RecipeNotFoundException() : base("Recipe not found.") { } public RecipeNotFoundException(int id) : base($"Recipe id: '{id}'not found.") { } } }