SecurityException.cs 396 B

123456789101112131415161718192021
  1. using System;
  2. namespace MediaBrowser.Controller.Net
  3. {
  4. public class SecurityException : Exception
  5. {
  6. public SecurityException(string message)
  7. : base(message)
  8. {
  9. }
  10. public SecurityExceptionType SecurityExceptionType { get; set; }
  11. }
  12. public enum SecurityExceptionType
  13. {
  14. Unauthenticated = 0,
  15. ParentalControl = 1
  16. }
  17. }