AuthenticationException.cs 307 B

12345678910111213141516
  1. using System;
  2. namespace MediaBrowser.Server.Implementations.Security
  3. {
  4. public class AuthenticationException : Exception
  5. {
  6. public AuthenticationException(string message)
  7. : base(message)
  8. {
  9. }
  10. public AuthenticationException()
  11. {
  12. }
  13. }
  14. }