Files
Umbraco-CMS/components/SQLCE4Umbraco/SqlCeProviderException.cs
2010-09-17 08:44:25 +00:00

21 lines
364 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlCE4Umbraco
{
public class SqlCeProviderException : Exception
{
public SqlCeProviderException() : base()
{
}
public SqlCeProviderException(string message) : base(message)
{
}
}
}