Skip to content

Commit 366af17

Browse files
committed
[UNDERTOW-2767] Move UndertowMessages.tooManyPathParameters from message id 213, that was already taken in main, to id 219.
Also: add placeholders for other message ids to prevent future id overlaps Signed-off-by: Flavia Rainone <[email protected]>
1 parent 12a2445 commit 366af17

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

core/src/main/java/io/undertow/UndertowMessages.java

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,20 @@ public interface UndertowMessages {
660660
@Message(id = 212, value = "Failed to encode query string '%s' with '%s' encoding.")
661661
IllegalArgumentException failedToEncodeQueryString(String q, String e);
662662

663-
@Message(id = 213, value = "Too many path parameters, cannot have more than %s path parameters")
664-
BadRequestException tooManyPathParameters(int noParams);
663+
// 213 placeholder
664+
665+
// 214 placeholder
666+
667+
// 215 placeholder
668+
669+
// 216 placeholder
670+
671+
// 217 placeholder
665672

666673
@Message(id = 218, value = "Failed to schedule access message. Access logger is closing.")
667674
IllegalStateException failedToLogAccessOnClose();
675+
676+
@Message(id = 219, value = "Too many path parameters, cannot have more than %s path parameters")
677+
BadRequestException tooManyPathParameters(int noParams);
678+
668679
}

0 commit comments

Comments
 (0)