RaUI/Source/MyDb/HtmlAgilityPack.Shared/Metro/InvalidProgramException.cs

18 lines
341 B
C#
Raw Normal View History

#if METRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HtmlAgilityPack
{
public class InvalidProgramException : System.Exception
{
public InvalidProgramException(string message)
: base(message)
{
}
}
}
#endif