diff options
-rw-r--r-- | src/java/org/apache/fop/pdf/PDFProfile.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/pdf/PDFProfile.java b/src/java/org/apache/fop/pdf/PDFProfile.java index 580a9a791..98005e469 100644 --- a/src/java/org/apache/fop/pdf/PDFProfile.java +++ b/src/java/org/apache/fop/pdf/PDFProfile.java @@ -202,7 +202,8 @@ public class PDFProfile { PDFDictionary markInfo = getDocument().getRoot().getMarkInfo(); if (markInfo == null) { throw new PDFConformanceException(format( - "{0} requires the MarkInfo dictionary to be present", getPDFAMode())); + "{0} requires that the accessibility option in the configuration file be enabled", + getPDFAMode())); } if (!Boolean.TRUE.equals(markInfo.get("Marked"))) { throw new PDFConformanceException(format(err, |