diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Common/Extensions/ResourceNotFoundException.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.Common/Extensions/ResourceNotFoundException.cs')
| -rw-r--r-- | MediaBrowser.Common/Extensions/ResourceNotFoundException.cs | 28 |
1 files changed, 28 insertions, 0 deletions
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 +{ + /// <summary> + /// Class ResourceNotFoundException + /// </summary> + public class ResourceNotFoundException : Exception + { + /// <summary> + /// Initializes a new instance of the <see cref="ResourceNotFoundException" /> class. + /// </summary> + public ResourceNotFoundException() + { + + } + + /// <summary> + /// Initializes a new instance of the <see cref="ResourceNotFoundException" /> class. + /// </summary> + /// <param name="message">The message.</param> + public ResourceNotFoundException(string message) + : base(message) + { + + } + } +} |
