qzxing/source/zxing/datamatrix/detector/DataMatrixDetectorException.cpp
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
362 B
C++

/*
* DetectorException.cpp
*
* Created on: Aug 26, 2011
* Author: luiz
*/
#include "DetectorException.h"
namespace zxing {
namespace datamatrix {
DetectorException::DetectorException(const char *msg) :
Exception(msg) {
}
DetectorException::~DetectorException() throw () {
// TODO Auto-generated destructor stub
}
}
} /* namespace zxing */