websitepanel/WebsitePanel.Installer/Sources/WebsitePanel.Installer.Core/ServiceComponentNotFoundException.cs
2012-09-10 13:00:35 -07:00

15 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.Installer.Core
{
class ServiceComponentNotFoundException : Exception
{
public ServiceComponentNotFoundException(string p)
: base(p)
{
}
}
}