diff options
author | crupest <crupest@outlook.com> | 2020-06-17 17:10:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-17 17:10:40 +0800 |
commit | 3dc9460798798e5ba155fae7b6afe84522c2c619 (patch) | |
tree | dd5e74d262b268f6ba7be5826a192bc42934cb35 /Timeline/Services/Exceptions/TimelinePostNotExistException.cs | |
parent | f737fed4f003fbeb7187629a7b730c64a87b72b9 (diff) | |
download | timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.tar.gz timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.tar.bz2 timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.zip |
refactor(back): Refactor timeline service.
Diffstat (limited to 'Timeline/Services/Exceptions/TimelinePostNotExistException.cs')
-rw-r--r-- | Timeline/Services/Exceptions/TimelinePostNotExistException.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Services/Exceptions/TimelinePostNotExistException.cs b/Timeline/Services/Exceptions/TimelinePostNotExistException.cs index bbb9e908..f95dd410 100644 --- a/Timeline/Services/Exceptions/TimelinePostNotExistException.cs +++ b/Timeline/Services/Exceptions/TimelinePostNotExistException.cs @@ -6,7 +6,7 @@ namespace Timeline.Services.Exceptions [Serializable]
public class TimelinePostNotExistException : EntityNotExistException
{
- public TimelinePostNotExistException() { }
+ public TimelinePostNotExistException() : this(null, null, false, null, null) { }
[Obsolete("This has no meaning.")]
public TimelinePostNotExistException(string? message) : this(message, null) { }
[Obsolete("This has no meaning.")]
|