namespace Umbraco.Core { public enum MacroErrorBehaviour { /// /// Default umbraco behavior - show an inline error within the /// macro but allow the page to continue rendering. /// Inline, /// /// Silently eat the error and do not display the offending macro. /// Silent, /// /// 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. /// Throw } }