Skip to content

Commit

Permalink
Add @SInCE tags
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Nov 23, 2023
1 parent 6df7615 commit 0505382
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions api/src/main/java/jakarta/servlet/jsp/ErrorData.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ public ErrorData(Throwable throwable, int statusCode, String uri, String servlet
* @param uri The request URI
* @param servletName The name of the servlet invoked
* @param queryString The request query string
*
* @since JSP 4.0
*/
public ErrorData(Throwable throwable, int statusCode, String method, String uri, String servletName,
String queryString) {
Expand Down Expand Up @@ -92,6 +94,8 @@ public int getStatusCode() {
* Returns the request method.
*
* @return The request method
*
* @since JSP 4.0
*/
public String getMethod() {
return this.method;
Expand Down Expand Up @@ -120,6 +124,8 @@ public String getServletName() {
* query string.
*
* @return The request query string
*
* @since JSP 4.0
*/
public String getQueryString() {
return this.queryString;
Expand Down

0 comments on commit 0505382

Please sign in to comment.