From 767cdc1f6f6a63ce997fc9476911e2c361f9d402 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Wed, 20 Feb 2013 20:33:05 -0500 Subject: Pushing missing changes --- .../Extensions/ResourceNotFoundException.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 MediaBrowser.Common/Extensions/ResourceNotFoundException.cs (limited to 'MediaBrowser.Common/Extensions/ResourceNotFoundException.cs') diff --git a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs new file mode 100644 index 000000000..403236b3d --- /dev/null +++ b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs @@ -0,0 +1,28 @@ +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) + { + + } + } +} -- cgit v1.2.3