// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Common.Extensions { using System; /// /// 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) { } } }