Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Last active February 23, 2020 17:18
ASP.NET Core ile Event Sourcing 01 - Store - TaskAlreadyCreatedException.cs
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