19 lines
649 B
C#
19 lines
649 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Components.Exceptions
|
|
{
|
|
[Serializable]
|
|
public class DateBoundsNotSetException : ApplicationException
|
|
{
|
|
public DateBoundsNotSetException() : base() { }
|
|
public DateBoundsNotSetException(string message) : base(message) { }
|
|
public DateBoundsNotSetException(string message, Exception exception) : base(message, exception) { }
|
|
protected DateBoundsNotSetException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
|
|
}
|
|
}
|