QPDFExc.cc
357 Bytes
#include <qpdf/QPDFExc.hh>
#include <qpdf/QUtil.hh>
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 ()
{
}