summaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFJob.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/QPDFJob.hh')
-rw-r--r--include/qpdf/QPDFJob.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/qpdf/QPDFJob.hh b/include/qpdf/QPDFJob.hh
index 734f5f45..853f7969 100644
--- a/include/qpdf/QPDFJob.hh
+++ b/include/qpdf/QPDFJob.hh
@@ -36,12 +36,22 @@
#include <iostream>
#include <functional>
#include <memory>
+#include <stdexcept>
class QPDFWriter;
class QPDFJob
{
public:
+ // ConfigError exception is thrown if there are any usage-like
+ // errors when calling Config methods.
+ class QPDF_DLL_CLASS ConfigError: public std::runtime_error
+ {
+ public:
+ QPDF_DLL
+ ConfigError(std::string const&);
+ };
+
QPDF_DLL
QPDFJob();