// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Extensions { using System; /// /// Class MethodNotAllowedException. /// public class MethodNotAllowedException : Exception { /// /// Initializes a new instance of the class. /// public MethodNotAllowedException() { } /// /// Initializes a new instance of the class. /// /// The message. public MethodNotAllowedException(string message) : base(message) { } } }