mirror of
https://github.com/bitwarden/server
synced 2025-12-17 16:53:23 +00:00
Split scene service and query service
rename instances of `recipe` to `scene`
This commit is contained in:
10
util/SeederApi/Services/SceneExceptions.cs
Normal file
10
util/SeederApi/Services/SceneExceptions.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Bit.SeederApi.Services;
|
||||
|
||||
public class SceneNotFoundException(string scene) : Exception($"Scene '{scene}' not found");
|
||||
|
||||
public class SceneExecutionException : Exception
|
||||
{
|
||||
public SceneExecutionException(string message) : base(message) { }
|
||||
public SceneExecutionException(string message, Exception innerException)
|
||||
: base(message, innerException) { }
|
||||
}
|
||||
Reference in New Issue
Block a user