using System; namespace MediaBrowser.Common.Extensions { /// /// Class ResourceNotFoundException. /// public class ResourceNotFoundException : Exception { /// /// Initializes a new instance of the class. /// public ResourceNotFoundException() { } /// /// Initializes a new instance of the class. /// /// The message. public ResourceNotFoundException(string message) : base(message) { } } }