aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs
blob: 13b04a6b78fe6657e1ece01b59f758df85e6e47b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Timeline.Services.Api
{
    [Serializable]
    public class InvalidHighlightTimelineException : Exception
    {
        public InvalidHighlightTimelineException() { }
        public InvalidHighlightTimelineException(string message) : base(message) { }
        public InvalidHighlightTimelineException(string message, Exception inner) : base(message, inner) { }
        protected InvalidHighlightTimelineException(
          System.Runtime.Serialization.SerializationInfo info,
          System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
    }
}