Moved MacroErrorBehaviour.cs

This commit is contained in:
Bjarke Berg
2019-05-20 16:58:47 +02:00
parent 0b77f8c244
commit cad3e8a635
2 changed files with 0 additions and 1 deletions

View File

@@ -1,29 +0,0 @@
namespace Umbraco.Core.Macros
{
public enum MacroErrorBehaviour
{
/// <summary>
/// Default umbraco behavior - show an inline error within the
/// macro but allow the page to continue rendering.
/// </summary>
Inline,
/// <summary>
/// Silently eat the error and do not display the offending macro.
/// </summary>
Silent,
/// <summary>
/// Throw an exception which can be caught by the global error handler
/// defined in Application_OnError. If no such error handler is defined
/// then you'll see the Yellow Screen Of Death (YSOD) error page.
/// </summary>
Throw,
/// <summary>
/// Silently eat the error and display the custom content reported in
/// the error event args
/// </summary>
Content
}
}

View File

@@ -673,7 +673,6 @@
<Compile Include="Logging\ProfilerExtensions.cs" />
<Compile Include="Logging\ProfilingLogger.cs" />
<Compile Include="Logging\VoidProfiler.cs" />
<Compile Include="Macros\MacroErrorBehaviour.cs" />
<Compile Include="MainDom.cs" />
<Compile Include="Manifest\ManifestParser.cs" />
<Compile Include="Manifest\ValueValidatorConverter.cs" />