1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 19:53:40 +00:00

Extract logic into service

This commit is contained in:
Hinton
2025-10-07 12:35:33 -07:00
parent fa46919409
commit d0d6bfb237
5 changed files with 160 additions and 75 deletions

View File

@@ -0,0 +1,13 @@
namespace Bit.SeederApi.Services;
public class RecipeNotFoundException : Exception
{
public RecipeNotFoundException(string message) : base(message) { }
}
public class RecipeExecutionException : Exception
{
public RecipeExecutionException(string message) : base(message) { }
public RecipeExecutionException(string message, Exception innerException)
: base(message, innerException) { }
}