using System; namespace Umbraco.Core.Exceptions { /// /// The exception that is thrown when a requested method or operation is not, and will not be, implemented. /// /// The is to be used when some code is not implemented, /// but should eventually be implemented (i.e. work in progress) and is reported by tools such as ReSharper. /// This exception is to be used when some code is not implemented, and is not meant to be, for whatever /// reason. public class WontImplementException : NotImplementedException { /// /// Initializes a new instance of the class. /// public WontImplementException() { } /// /// Initializes a new instance of the class with a specified reason message. /// public WontImplementException(string message) : base(message) { } } }