public static enum OAuthAuthenticationRTException.E054212 extends java.lang.Enum<OAuthAuthenticationRTException.E054212> implements ErrorCode
Enum Constant and Description |
---|
M00
Reserved for unexpected common exceptions.
|
M01
Failed to validate JWT.
|
M02
Failed to validate JWT, the token was rejected.
|
M03
Failed to authenticate user because the user does not grant application rights.
|
M04
Failed to authenticate user.
|
M05
Failed to decipher
state parameter returned by OAuth provider. |
M06
Failed to parse the
state parameter because of it is expired. |
M07
Failed to parse the
state parameter because of invalid checksum. |
M08
Failed to authenticate user because the {0} provider does not return required user's data.
|
M09
State parameter is used multiple times.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends UESRuntimeException> |
getExceptionClass()
Returns class of exception which is owner of this error code.
|
static OAuthAuthenticationRTException.E054212 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OAuthAuthenticationRTException.E054212[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
state
parameter returned by OAuth provider.state
parameter because of it is expired.state
parameter because of invalid checksum.for (OAuthAuthenticationRTException.E054212 c : OAuthAuthenticationRTException.E054212.values()) System.out.println(c);
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullgetExceptionClass
in interface ErrorCode
ErrorCode.getExceptionClass()