diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-01-11 02:02:48 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-11 02:02:48 +0300 |
| commit | aca4d678a2a6aa46b57837d3a6c1bc9d4c537d7b (patch) | |
| tree | 88f29a76eca6f3f6cdd299ad32beab5c5d36b72a /MediaBrowser.Common/Extensions/MethodNotAllowedException.cs | |
| parent | fa1aeeb18a766fd7b2265dc0352ee100d8377163 (diff) | |
| parent | bb236b95916c7fe0fc04fefbb409686ab289a758 (diff) | |
Merge pull request #2136 from Bond-009/warn12
More warnings (removed)
Diffstat (limited to 'MediaBrowser.Common/Extensions/MethodNotAllowedException.cs')
| -rw-r--r-- | MediaBrowser.Common/Extensions/MethodNotAllowedException.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Extensions/MethodNotAllowedException.cs b/MediaBrowser.Common/Extensions/MethodNotAllowedException.cs new file mode 100644 index 000000000..48e758ee4 --- /dev/null +++ b/MediaBrowser.Common/Extensions/MethodNotAllowedException.cs @@ -0,0 +1,26 @@ +using System; + +namespace MediaBrowser.Common.Extensions +{ + /// <summary> + /// Class MethodNotAllowedException. + /// </summary> + public class MethodNotAllowedException : Exception + { + /// <summary> + /// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class. + /// </summary> + public MethodNotAllowedException() + { + } + + /// <summary> + /// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class. + /// </summary> + /// <param name="message">The message.</param> + public MethodNotAllowedException(string message) + : base(message) + { + } + } +} |
