fix escaping in message

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903314 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-08-09 19:47:53 +00:00
parent 59091db138
commit eb5dca9a1e
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ public final class PackagePartName implements Comparable<PackagePartName> {
/* Check rule M1.7 */
if (decodedChar == '/' || decodedChar == '\\') {
throw new InvalidFormatException(
"A segment shall not contain percent-encoded forward slash ('/'), or backward slash ('\') characters. [M1.7]");
"A segment shall not contain percent-encoded forward slash ('/'), or backward slash ('\\') characters. [M1.7]");
}
/* Check rule M1.8 */