mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
11 lines
377 B
C#
11 lines
377 B
C#
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) { }
|
|
}
|