Last active
February 23, 2020 17:18
ASP.NET Core ile Event Sourcing 01 - Store - TaskAlreadyCreatedException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace EventSourcingTaskApp.Core.Exceptions | |
{ | |
using System; | |
public class TaskAlreadyCreatedException : Exception | |
{ | |
public TaskAlreadyCreatedException() : base("Task already created.") { } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment