fipa_acl  1.4
exception.h
Go to the documentation of this file.
1 #ifndef FIPA_ACL_MSG_GENERATOR_EXCEPTION_H
2 #define FIPA_ACL_MSG_GENERATOR_EXCEPTION_H
3 
4 #include <stdexcept>
5 #include <string>
6 
7 class MessageGeneratorException : public std::runtime_error
8 {
9 
10 public:
11  MessageGeneratorException(const std::string& msg) : runtime_error(msg)
12  {
13  }
14 
15 };
16 
17 #endif // _MSG_GENERATOR_EXCEPTION_H_
18 
19 
MessageGeneratorException(const std::string &msg)
Definition: exception.h:11