Files
Umbraco-CMS/src/Umbraco.Core/IO/FileSecurityException.cs
Shannon Deminick f36a88384d Migrated UmbracoSettings, GlobalSettings, XmlHelper, IOHelper and supporting classes to Umbraco.Core.
This fixes the need for Umbraco.Core to reference business logic since business logic needs to reference
Umbraco.Core (Umbraco.Core should never reference any other project except for interfaces, it is the 'Core'
of the new codebase.
2012-08-23 22:28:22 +06:00

21 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Umbraco.Core.IO
{
public class FileSecurityException : Exception
{
public FileSecurityException()
{
}
public FileSecurityException(string message) : base(message)
{
}
}
}