2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-05 03:40:53 +00:00
qpdf/include/qpdf/QPDFExc.hh
Jay Berkenbilt 9f93c89ee5 update copyright, release 2.0.3
git-svn-id: svn+q:///qpdf/trunk@644 71b93d88-0707-0410-a8cf-f5a4172ac649
2009-02-15 16:31:12 +00:00

23 lines
590 B
C++

// Copyright (c) 2005-2009 Jay Berkenbilt
//
// This file is part of qpdf. This software may be distributed under
// the terms of version 2 of the Artistic License which may be found
// in the source distribution. It is provided "as is" without express
// or implied warranty.
#ifndef __QPDFEXC_HH__
#define __QPDFEXC_HH__
#include <qpdf/QEXC.hh>
class QPDFExc: public QEXC::General
{
public:
QPDFExc(std::string const& message);
QPDFExc(std::string const& filename, int offset,
std::string const& message);
virtual ~QPDFExc() throw ();
};
#endif // __QPDFEXC_HH__