Jpp
JTriggerException.hh
Go to the documentation of this file.
1 #ifndef __JTRIGGER__JTRIGGEREXCEPTION__
2 #define __JTRIGGER__JTRIGGEREXCEPTION__
3 
4 #include <string>
5 
6 #include "JLang/JException.hh"
7 
8 /**
9  * \author mdejong
10  */
11 
12 namespace JTRIGGER {}
13 namespace JPP { using namespace JTRIGGER; }
14 
15 namespace JTRIGGER {
16 
17  using JLANG::JException;
18 
19 
20  /**
21  * General exception
22  */
24  public JException
25  {
26  public:
27  /**
28  * Constructor.
29  *
30  * \param error error message
31  */
32  JTriggerException(const std::string& error) :
33  JException(error)
34  {}
35  };
36 }
37 
38 #endif
JException.hh
JTRIGGER::JTriggerException::JTriggerException
JTriggerException(const std::string &error)
Constructor.
Definition: JTriggerException.hh:32
JPP
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JAAnetToolkit.hh:37
JTRIGGER::JTriggerException
General exception.
Definition: JTriggerException.hh:23
JTRIGGER
Checksum.
Definition: JSupport/JSupport.hh:35
JLANG::JException
General exception.
Definition: JException.hh:40