mirror of
https://github.com/status-im/qzxing.git
synced 2025-02-12 19:06:50 +00:00
24 lines
448 B
C++
24 lines
448 B
C++
/*
|
|
* DetectorException.h
|
|
*
|
|
* Created on: Aug 26, 2011
|
|
* Author: luiz
|
|
*/
|
|
|
|
#ifndef DETECTOREXCEPTION_DM_H_
|
|
#define DETECTOREXCEPTION_DM_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_DM_H_ */
|