PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AbazovViewComponents/Exceptions/DateOutOfBoundsException.cs
2023-09-21 18:50:11 +04:00

18 lines
636 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace AbazovViewComponents.Exceptions
{
public class DateOutOfBoundsException : ApplicationException
{
public DateOutOfBoundsException() : base() { }
public DateOutOfBoundsException(string message) : base(message) { }
public DateOutOfBoundsException(string message, Exception exception) : base(message, exception) { }
protected DateOutOfBoundsException(SerializationInfo info, StreamingContext contex) : base(info, contex) { }
}
}