mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-16 18:47:28 -05:00
UI rework and fixes
This commit is contained in:
14
Application/FeedParsers/FeedParseException.cs
Normal file
14
Application/FeedParsers/FeedParseException.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace FeedCenter.FeedParsers
|
||||
{
|
||||
internal class FeedParseException : ApplicationException
|
||||
{
|
||||
public FeedParseException(FeedParseError feedParseError)
|
||||
{
|
||||
ParseError = feedParseError;
|
||||
}
|
||||
|
||||
public FeedParseError ParseError { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user