using System; using System.Net; using System.Web; namespace Umbraco.Web.Mvc { /// /// Exception that occurs when an Umbraco form route string is invalid /// /// [Serializable] public sealed class HttpUmbracoFormRouteStringException : HttpException { /// /// Initializes a new instance of the class. /// /// The error message displayed to the client when the exception is thrown. public HttpUmbracoFormRouteStringException(string message) : base(message) { } } }