mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
12 lines
249 B
C#
12 lines
249 B
C#
using System;
|
|
|
|
namespace FeedCenter.FeedParsers;
|
|
|
|
[Serializable]
|
|
internal class InvalidFeedFormatException : ApplicationException
|
|
{
|
|
internal InvalidFeedFormatException(Exception exception)
|
|
: base(string.Empty, exception)
|
|
{
|
|
}
|
|
} |