systemSolver->runBasicKinematic();
This commit is contained in:
16
MbDCode/TooSmallStepSizeError.h
Normal file
16
MbDCode/TooSmallStepSizeError.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdexcept>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
namespace MbD {
|
||||
class TooSmallStepSizeError : virtual public std::runtime_error
|
||||
{
|
||||
|
||||
public:
|
||||
//TooSmallStepSizeError();
|
||||
explicit TooSmallStepSizeError(const std::string& msg);
|
||||
virtual ~TooSmallStepSizeError() noexcept {}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user