We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af5bba commit c0337f9Copy full SHA for c0337f9
core/src/main/java/org/springframework/security/core/AuthenticationException.java
@@ -62,16 +62,6 @@ public AuthenticationException(String msg) {
62
this.authRequest = null;
63
}
64
65
- /**
66
- * Constructs an {@code AuthenticationException} with the specified message and root
67
- * cause.
68
- * @param msg the detail message
69
- * @param authRequest details about the failed authentication request
70
- */
71
- public AuthenticationException(String msg, Authentication authRequest) {
72
- super(msg);
73
- Assert.notNull(authRequest, "AuthRequest cannot be null");
74
- }
75
76
/**
77
* Sets the {@link Authentication} object representing the failed authentication
0 commit comments