File tree 1 file changed +5
-1
lines changed
oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .springframework .security .oauth2 .core ;
17
17
18
+ import org .springframework .security .core .SpringSecurityCoreVersion ;
18
19
import org .springframework .util .Assert ;
19
20
21
+ import java .io .Serializable ;
22
+
20
23
/**
21
24
* A representation of an <i>OAuth 2.0 Error</i>.
22
25
*
30
33
* @since 5.0
31
34
* @see <a target="_blank" href="https://tools.ietf.org/html/rfc6749#section-11.4">Section 11.4 OAuth Extensions Error Registry</a>
32
35
*/
33
- public final class OAuth2Error {
36
+ public final class OAuth2Error implements Serializable {
37
+ private static final long serialVersionUID = SpringSecurityCoreVersion .SERIAL_VERSION_UID ;
34
38
private final String errorCode ;
35
39
private final String description ;
36
40
private final String uri ;
You can’t perform that action at this time.
0 commit comments