1.00.0
C++ Simulation-Oriented Discrete Event Management Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
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
28
class
EventQueueException
:
public
SEvMgrException
{
29
public
:
31
EventQueueException
(
const
std::string& iWhat) :
SEvMgrException
(iWhat) {}
32
};
33
34
35
}
36
#endif // __SEVMGR_SEVMGR_EXCEPTIONS_HPP
37
Generated on Sun Dec 23 2012 11:16:36 for SEvMgr by
1.8.1.1