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