Folder structure reconstruction

This commit is contained in:
Fabian Stamm
2016-12-09 15:41:35 +01:00
parent df48102215
commit c4c32efb04
98 changed files with 5 additions and 2 deletions

View 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)
{
}
}
}