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 bd42939 commit e05c9f4Copy full SHA for e05c9f4
web/src/main/java/org/springframework/security/web/csrf/MissingCsrfTokenException.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2002-2013 the original author or authors.
+ * Copyright 2002-2021 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -26,7 +26,7 @@
26
public class MissingCsrfTokenException extends CsrfException {
27
28
public MissingCsrfTokenException(String actualToken) {
29
- super("Could not verify the provided CSRF token because your session was not found.");
+ super("Could not verify the provided CSRF token because no token was found to compare.");
30
}
31
32
0 commit comments