extratorException.h
369 Bytes
/**
* \file extratorException.h
*/
#ifndef EXTRATOREXCEPTION_H
#define EXTRATOREXCEPTION_H
#include <lavidlib/base/RuntimeException.h>
using namespace lavidlib;
using namespace std;
class ExtratorException : public RuntimeException {
public:
ExtratorException(const string message);
ExtratorException(const char* message);
};
#endif /* EXTRATOREXCEPTION_H */