qzxing/source/zxing/datamatrix/detector/DetectorException.h
conxt 573dd17a59 Source, Desktop and Harmattan binaries moved to version 1.2
Based on Feb 2012 ZXing sources. Added small Aztec code support, improved detection of 1D barcodes.

Signed-off-by: conxt <apps@mint.com.ua>
2012-05-13 23:47:37 +03:00

24 lines
439 B
C++

/*
* DetectorException.h
*
* Created on: Aug 26, 2011
* Author: luiz
*/
#ifndef DETECTOREXCEPTION_H_
#define DETECTOREXCEPTION_H_
#include <zxing/Exception.h>
namespace zxing {
namespace datamatrix {
class DetectorException : public Exception {
public:
DetectorException(const char *msg);
virtual ~DetectorException() throw();
};
} /* namespace nexxera */
} /* namespace zxing */
#endif /* DETECTOREXCEPTION_H_ */