-
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.
ShouldThrowValidationExceptionIfNoReceiverWasAdded -> FAIL
- Loading branch information
1 parent
59218cd
commit 314b9f0
Showing
3 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
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
20 changes: 20 additions & 0 deletions
20
FlexiMail/Models/Foundations/Messages/Exceptions/InvalidFlexiMessageException.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,20 @@ | ||
// --------------------------------------- | ||
// Copyright (c) 2024 Mabrouk Mahdhi. | ||
// Made with love for the .NET Community | ||
// --------------------------------------- | ||
|
||
using Xeptions; | ||
|
||
namespace FlexiMail.Models.Foundations.Messages.Exceptions | ||
{ | ||
public class InvalidFlexiMessageException : Xeption | ||
{ | ||
public InvalidFlexiMessageException(string message) | ||
: base(message) | ||
{ } | ||
|
||
public InvalidFlexiMessageException(string message, Xeption innerException) | ||
: base(message, innerException) | ||
{ } | ||
} | ||
} |
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