12 lines
262 B
C#
12 lines
262 B
C#
namespace Jambo.Domain.Model.Posts
|
|
{
|
|
using Jambo.Domain.Exceptions;
|
|
|
|
public class CommentShouldNotBeEmptyException : DomainException
|
|
{
|
|
public CommentShouldNotBeEmptyException(string message)
|
|
: base(message)
|
|
{ }
|
|
}
|
|
}
|