.Simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
SimulationException.h
1 #ifndef __SIMULATION_EXCEPTION_H__
2 #define __SIMULATION_EXCEPTION_H__
3 
4 #include <stdexcept>
5 namespace MDSimulation
6 {
7  class SimulationException: public std::runtime_error
8  {
9  public:
10  explicit SimulationException(const std::string& msg) : std::runtime_error(msg)
11  { }
12  };
13 }
14 #endif
Definition: SimulationException.h:7