blob: eac7a7714bfa52d7c1e8cdb823095646b01e8de1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace Timeline.Services
{
[Serializable]
public class TimelinePostDataNotExistException : Exception
{
public TimelinePostDataNotExistException() : this(null, null) { }
public TimelinePostDataNotExistException(string? message) : this(message, null) { }
public TimelinePostDataNotExistException(string? message, Exception? inner) : base(message, inner) { }
protected TimelinePostDataNotExistException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
}
|