Folder structure reconstruction
This commit is contained in:
24
MailServer/Exceptions/NoMailsInQueueException.cs
Normal file
24
MailServer/Exceptions/NoMailsInQueueException.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SMTPServer.Exceptions
|
||||
{
|
||||
class NoMailsInQueueException : Exception
|
||||
{
|
||||
public NoMailsInQueueException() : base()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public NoMailsInQueueException(string message) : base(message)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public NoMailsInQueueException(string message, Exception inner) : base(message, inner)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user