aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_optimization.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_optimization.cc')
-rw-r--r--libqpdf/QPDF_optimization.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/libqpdf/QPDF_optimization.cc b/libqpdf/QPDF_optimization.cc
index edd9bba9..7a45d43e 100644
--- a/libqpdf/QPDF_optimization.cc
+++ b/libqpdf/QPDF_optimization.cc
@@ -78,8 +78,9 @@ QPDF::flattenScalarReferences()
{
if (node.isScalar())
{
- throw QEXC::Internal(
- "flattenScalarReferences landed at indirect scalar");
+ throw std::logic_error(
+ "INTERNAL ERROR:"
+ " flattenScalarReferences landed at indirect scalar");
}
ObjGen og(node.getObjectID(), node.getGeneration());
if (visited.count(og) > 0)
@@ -124,7 +125,8 @@ QPDF::flattenScalarReferences()
{
// QPDF_Dictionary.getKeys() never returns null
// keys.
- throw QEXC::Internal("dictionary with null key found");
+ throw std::logic_error(
+ "INTERNAL ERROR: dictionary with null key found");
}
else if (oh.isScalar())
{