diff options
Diffstat (limited to 'MediaBrowser.Controller/Net/PaymentRequiredException.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/PaymentRequiredException.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/PaymentRequiredException.cs b/MediaBrowser.Controller/Net/PaymentRequiredException.cs new file mode 100644 index 000000000..e09fe092e --- /dev/null +++ b/MediaBrowser.Controller/Net/PaymentRequiredException.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MediaBrowser.Controller.Net +{ + /// <summary> + /// Corresponds to a 402 response code + /// </summary> + public class PaymentRequiredException : Exception + { + } +} |
