mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
13 lines
275 B
C#
13 lines
275 B
C#
using System;
|
|
|
|
namespace FeedCenter.FeedParsers;
|
|
|
|
internal class FeedParseException : ApplicationException
|
|
{
|
|
public FeedParseException(FeedParseError feedParseError)
|
|
{
|
|
ParseError = feedParseError;
|
|
}
|
|
|
|
public FeedParseError ParseError { get; set; }
|
|
} |