1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 11:33:26 +00:00

Resolve some comments

This commit is contained in:
Hinton
2025-12-18 14:04:08 +01:00
parent f22e3fe2c8
commit 742f77d531
3 changed files with 2 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
namespace Bit.SeederApi.Services;
public class QueryNotFoundException(string query) : Exception($"Query '{query}' not found");
public class QueryExecutionException : Exception
{
public QueryExecutionException(string message) : base(message) { }
public QueryExecutionException(string message, Exception innerException)
: base(message, innerException) { }
}