24 lines
525 B
C++
24 lines
525 B
C++
#pragma once
|
|
|
|
#include "NewtonRaphsonError.h"
|
|
|
|
namespace MbD {
|
|
//class MaximumIterationError : public NewtonRaphsonError
|
|
//{
|
|
//public:
|
|
// //MaximumIterationError() {}
|
|
// MaximumIterationError(const std::string& msg) : NewtonRaphsonError(msg) {}
|
|
|
|
// virtual ~MaximumIterationError() noexcept {}
|
|
//};
|
|
class MaximumIterationError : virtual public std::runtime_error
|
|
{
|
|
|
|
public:
|
|
//MaximumIterationError();
|
|
explicit MaximumIterationError(const std::string& msg);
|
|
virtual ~MaximumIterationError() noexcept {}
|
|
};
|
|
}
|
|
|