Go to the documentation of this file.00001 #ifndef __SEVMGR_SEVMGR_EXCEPTIONS_HPP
00002 #define __SEVMGR_SEVMGR_EXCEPTIONS_HPP
00003
00004
00005
00006
00007
00008 #include <exception>
00009
00010 #include <stdair/stdair_exceptions.hpp>
00011
00012 namespace SEVMGR {
00013
00014
00018 class SEvMgrException : public stdair::RootException {
00019 public:
00023 SEvMgrException (const std::string& iWhat)
00024 : stdair::RootException (iWhat) {}
00025 };
00026
00027 }
00028 #endif // __SEVMGR_SEVMGR_EXCEPTIONS_HPP
00029