mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
24 lines
660 B
Go
24 lines
660 B
Go
|
package domain
|
||
|
|
||
|
type OIDCErrorReason int32
|
||
|
|
||
|
const (
|
||
|
OIDCErrorReasonUnspecified OIDCErrorReason = iota
|
||
|
OIDCErrorReasonInvalidRequest
|
||
|
OIDCErrorReasonUnauthorizedClient
|
||
|
OIDCErrorReasonAccessDenied
|
||
|
OIDCErrorReasonUnsupportedResponseType
|
||
|
OIDCErrorReasonInvalidScope
|
||
|
OIDCErrorReasonServerError
|
||
|
OIDCErrorReasonTemporaryUnavailable
|
||
|
OIDCErrorReasonInteractionRequired
|
||
|
OIDCErrorReasonLoginRequired
|
||
|
OIDCErrorReasonAccountSelectionRequired
|
||
|
OIDCErrorReasonConsentRequired
|
||
|
OIDCErrorReasonInvalidRequestURI
|
||
|
OIDCErrorReasonInvalidRequestObject
|
||
|
OIDCErrorReasonRequestNotSupported
|
||
|
OIDCErrorReasonRequestURINotSupported
|
||
|
OIDCErrorReasonRegistrationNotSupported
|
||
|
)
|