~ruther/NosSmooth

7094ce3aafd7b05ded3b8105f544fd008a8e2618 — František Boháček 3 years ago 81560d8
feat(core): make command handler not found error
1 files changed, 1 insertions(+), 1 deletions(-)

M Core/NosSmooth.Core/Errors/CommandHandlerNotFound.cs
M Core/NosSmooth.Core/Errors/CommandHandlerNotFound.cs => Core/NosSmooth.Core/Errors/CommandHandlerNotFound.cs +1 -1
@@ 13,5 13,5 @@ namespace NosSmooth.Core.Errors;
/// Represents an error that tells the user there is no handler for the specified command so it cannot be processed.
/// </summary>
/// <param name="CommandType">The type of the command.</param>
public record CommandHandlerNotFound(Type CommandType) : ResultError(
public record CommandHandlerNotFound(Type CommandType) : NotFoundError(
    $"Could not process the command of type {CommandType.FullName}, because there is not a handler for it.");
\ No newline at end of file

Do not follow this link