feat(udt-001): domain layer with Usuario entity

This commit is contained in:
2026-04-13 21:36:00 -03:00
parent 88ecaa2c7f
commit 2111070c77
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace SIGCM2.Domain.Exceptions;
/// <summary>
/// Thrown when login credentials are invalid (user not found, wrong password, or inactive).
/// Deliberately vague to prevent user enumeration.
/// </summary>
public sealed class InvalidCredentialsException : Exception
{
public InvalidCredentialsException()
: base("Credenciales inválidas") { }
}