2012-07-28 00:13:06 +06:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.IO
|
|
|
|
|
|
{
|
|
|
|
|
|
public class FileSecurityException : Exception
|
|
|
|
|
|
{
|
|
|
|
|
|
public FileSecurityException()
|
|
|
|
|
|
{
|
2017-07-20 11:21:28 +02:00
|
|
|
|
|
2012-07-28 00:13:06 +06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public FileSecurityException(string message) : base(message)
|
|
|
|
|
|
{
|
2017-07-20 11:21:28 +02:00
|
|
|
|
|
2012-07-28 00:13:06 +06:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|