Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -2,5 +2,12 @@
namespace adas_core.Domain.Exceptions;
/// <summary>
/// Represents the exception that is thrown when no login services are available to handle authentication requests.
/// </summary>
/// <remarks>
/// This exception derives from <see cref="BusinessException"/> and is raised with the <see cref="HttpStatusCode.Forbidden"/> status code and the message "No login services available".
/// </remarks>
/// <!-- aidoc:v1 sig=e23ced3 -->
public class LoginServicesNotFoundException()
: BusinessException(HttpStatusCode.Forbidden, "No login services available");