PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AbazovViewComponents/Exceptions/DateBoundsNotSetException.cs

20 lines
658 B
C#
Raw Normal View History

2023-09-21 18:50:11 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AbazovViewComponents.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) { }
}
}