diff options
Diffstat (limited to 'Gestor.Common/Gestor.Common.Exceptions/MailingException.cs')
| -rw-r--r-- | Gestor.Common/Gestor.Common.Exceptions/MailingException.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Gestor.Common/Gestor.Common.Exceptions/MailingException.cs b/Gestor.Common/Gestor.Common.Exceptions/MailingException.cs new file mode 100644 index 0000000..7d4be1f --- /dev/null +++ b/Gestor.Common/Gestor.Common.Exceptions/MailingException.cs @@ -0,0 +1,14 @@ +namespace Gestor.Common.Exceptions; + +public class MailingException : BaseException +{ + public MailingException(string message) + : base(message) + { + } + + public MailingException() + : base(string.Empty) + { + } +} |