AuthenticationException.cs 637 B

12345678910111213141516171819202122232425262728
  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. }