Files
event-sourcing-jambo/source/Shared/Jambo.Domain/Model/Posts/CommentShouldNotBeEmptyException.cs
Ivan Paulovich 9334511f78 Unit Tests
2018-01-25 17:19:31 -02:00

12 lines
262 B
C#

namespace Jambo.Domain.Model.Posts
{
using Jambo.Domain.Exceptions;
public class CommentShouldNotBeEmptyException : DomainException
{
public CommentShouldNotBeEmptyException(string message)
: base(message)
{ }
}
}