25 lines
446 B
C#
25 lines
446 B
C#
|
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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|