#ifndef __JTRIGGER__JTRIGGEREXCEPTION__ #define __JTRIGGER__JTRIGGEREXCEPTION__ #include #include "JLang/JException.hh" /** * \author mdejong */ namespace JTRIGGER {} namespace JPP { using namespace JTRIGGER; } namespace JTRIGGER { using JLANG::JException; /** * General exception */ class JTriggerException : public JException { public: /** * Constructor. * * \param error error message */ JTriggerException(const std::string& error) : JException(error) {} }; } #endif