Enum LoginError
Represents the error status that can occur during a login action.
public enum LoginError
Fields
DifferentUserAlreadyLoggedIn = 2A different user is already logged in, preventing the current login attempt.
ExpiredJwt = 5The JWT (JSON Web Token) provided during the login process has expired.
InvalidJwt = 1The JWT (JSON Web Token) provided during the login process is invalid.
RequestedUserAlreadyLoggedIn = 3The user being requested for login is already logged in.
UnknownFailure = 0An unknown error occurred that does not fall into any of the other defined categories.
UserNotFound = 4The user specified for login could not be found.