using System; namespace FabAccessAPI.Exceptions { /// /// Authenticating to a server has failed /// InnerException will provide more information /// public class AuthenticationException : Exception { public AuthenticationException() { } public AuthenticationException(string message) : base(message) { } public AuthenticationException(string message, Exception inner) : base(message, inner) { } } }