AuthenticationException.cs 638 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace MediaBrowser.Controller.Authentication
  3. {
  4. /// <summary>
  5. /// The exception that is thrown when an attempt to authenticate fails.
  6. /// </summary>
  7. public class AuthenticationException : Exception
  8. {
  9. /// <inheritdoc />
  10. public AuthenticationException() : base()
  11. {
  12. }
  13. /// <inheritdoc />
  14. public AuthenticationException(string message) : base(message)
  15. {
  16. }
  17. /// <inheritdoc />
  18. public AuthenticationException(string message, Exception innerException)
  19. : base(message, innerException)
  20. {
  21. }
  22. }
  23. }