Files
Umbraco-CMS/src/SQLCE4Umbraco/SqlCeProviderException.cs

21 lines
364 B
C#
Raw Normal View History

2018-11-22 14:05:51 +00:00
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)
{
}
}
}