17 lines
314 B
C++
17 lines
314 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace MbD {
|
|
class SimulationStoppingError : virtual public std::runtime_error
|
|
{
|
|
|
|
public:
|
|
//SimulationStoppingError();
|
|
explicit SimulationStoppingError(const std::string& msg);
|
|
virtual ~SimulationStoppingError() noexcept {}
|
|
};
|
|
}
|