dispatcher

This commit is contained in:
2026-02-05 19:21:25 +01:00
parent 01f25fb093
commit 9c75216bea
3 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using AipsCore.Application.Abstract.Command;
using AipsCore.Application.Abstract.Query;
namespace AipsCore.Application.Common.Dispatcher;
public class DispatchException : Exception
{
public DispatchException(object commandQuery)
: base($"Error while dispatching '{commandQuery.GetType().Name}'")
{ }
}