using System;
namespace MediaBrowser.Common.Extensions
{
    /// 
    /// 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)
        {
        }
    }
}