using System.Net; namespace adas_core.Domain.Exceptions; /// /// Represents the exception that is thrown when no login services are available to handle authentication requests. /// /// /// This exception derives from and is raised with the status code and the message "No login services available". /// /// public class LoginServicesNotFoundException() : BusinessException(HttpStatusCode.Forbidden, "No login services available");