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