-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat : add duplicate comment exception
- Loading branch information
1 parent
57f421f
commit 60b7315
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
Src/Product.Domain/Aggregates/Product/Entities/CommenterUser.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace Product.Domain.Aggregates.ProductAggregate; | ||
|
||
public class CommenterUser | ||
public class CommenterUser | ||
{ | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
Src/Product.Domain/Aggregates/Product/Exceptions/DuplicateCommentException.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Product.Domain.Aggregates.Product.Exceptions; | ||
|
||
public class DuplicateCommentException : Exception | ||
{ | ||
public DuplicateCommentException() : base(message: "Comment is duplicated") | ||
{ | ||
|
||
} | ||
public DuplicateCommentException(string msg) : base(message: msg) | ||
{ | ||
|
||
} | ||
} |