#include #include QPDFExc::QPDFExc(std::string const& message) : QEXC::General(message) { } QPDFExc::QPDFExc(std::string const& filename, int offset, std::string const& message) : QEXC::General(filename + ": offset " + QUtil::int_to_string(offset) + ": " + message) { } QPDFExc::~QPDFExc() throw () { }