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.
21 lines
378 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|