ric_exception.h
Go to the documentation of this file.
1 //
2 // Created by Eli Eli on 18/11/2017.
3 //
4 
5 #ifndef RIC_INTERFACE_RIC_EXCEPTION_H
6 #define RIC_INTERFACE_RIC_EXCEPTION_H
7 
8 #include <iostream>
9 //#include <exception>
10 //#include <stdexcept>
11 //#include <sstream>
12 
13 namespace ric_interface
14 {
15  struct RicException : public std::runtime_error
16  {
17  public:
18  RicException(std::string msg) : std::runtime_error(msg) {}
19  };
20 
22  {
23  public:
24  ConnectionExeption(std::string msg) : RicException(msg) {}
25  };
26 }
27 
28 
29 #endif //RIC_INTERFACE_RIC_EXCEPTION_H
RicException(std::string msg)
Definition: ric_exception.h:18


ric_interface
Author(s):
autogenerated on Wed Jan 3 2018 03:48:20