Uses of Enum Class
cloud.opencode.base.oauth2.exception.OAuth2ErrorCode
Packages that use OAuth2ErrorCode
-
Uses of OAuth2ErrorCode in cloud.opencode.base.oauth2.exception
Subclasses with type arguments of type OAuth2ErrorCode in cloud.opencode.base.oauth2.exceptionMethods in cloud.opencode.base.oauth2.exception that return OAuth2ErrorCodeModifier and TypeMethodDescriptionOAuth2Exception.errorCode()Get the error code 获取错误码static OAuth2ErrorCodeReturns the enum constant of this class with the specified name.static OAuth2ErrorCode[]OAuth2ErrorCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in cloud.opencode.base.oauth2.exception with parameters of type OAuth2ErrorCodeModifierConstructorDescriptionOAuth2Exception(OAuth2ErrorCode errorCode) Create exception with error code 使用错误码创建异常OAuth2Exception(OAuth2ErrorCode errorCode, String details) Create exception with error code and details 使用错误码和详情创建异常OAuth2Exception(OAuth2ErrorCode errorCode, String details, String serverError, String serverErrorDescription, String serverErrorUri) Create exception with error code and server error fields (RFC 6749) 使用错误码和服务器错误字段创建异常(RFC 6749)OAuth2Exception(OAuth2ErrorCode errorCode, String details, Throwable cause) Create exception with error code, details and cause 使用错误码、详情和原因创建异常OAuth2Exception(OAuth2ErrorCode errorCode, Throwable cause) Create exception with error code and cause 使用错误码和原因创建异常