SEvMgr Logo  1.00.0
C++ Simulation-Oriented Discrete Event Management Library
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
SEVMGR_Exceptions.hpp
Go to the documentation of this file.
1 #ifndef __SEVMGR_SEVMGR_EXCEPTIONS_HPP
2 #define __SEVMGR_SEVMGR_EXCEPTIONS_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <exception>
9 // StdAir
10 #include <stdair/stdair_exceptions.hpp>
11 
12 namespace SEVMGR {
13 
14  // ///////// Exceptions ///////////
18  class SEvMgrException : public stdair::RootException {
19  public:
23  SEvMgrException (const std::string& iWhat)
24  : stdair::RootException (iWhat) {}
25  };
26 
29  public:
31  EventQueueException (const std::string& iWhat) : SEvMgrException (iWhat) {}
32  };
33 
34 
35 }
36 #endif // __SEVMGR_SEVMGR_EXCEPTIONS_HPP
37