1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00
This commit is contained in:
Hinton
2025-10-07 13:42:59 -07:00
parent d0d6bfb237
commit 2b340b72da
2 changed files with 64 additions and 75 deletions

View File

@@ -1,9 +1,6 @@
namespace Bit.SeederApi.Services;
public class RecipeNotFoundException : Exception
{
public RecipeNotFoundException(string message) : base(message) { }
}
public class RecipeNotFoundException(string recipe) : Exception($"Recipe '{recipe}' not found");
public class RecipeExecutionException : Exception
{