|
@@ -3,7 +3,7 @@
|
|
|
* Company: Lynar Studios
|
|
|
* E-Mail: webmaster@lynarstudios.com
|
|
|
* Created: 2023-02-04
|
|
|
- * Changed: 2023-03-28
|
|
|
+ * Changed: 2023-05-19
|
|
|
*
|
|
|
* */
|
|
|
|
|
@@ -18,9 +18,9 @@ using std::string;
|
|
|
IllegalArithmeticOperationException::IllegalArithmeticOperationException() : Exception("IllegalArithmeticOperationException")
|
|
|
{}
|
|
|
|
|
|
-IllegalArithmeticOperationException::IllegalArithmeticOperationException(string _message) : IllegalArithmeticOperationException()
|
|
|
+IllegalArithmeticOperationException::IllegalArithmeticOperationException(const string &_message) : IllegalArithmeticOperationException()
|
|
|
{
|
|
|
- this->message = ::move(_message);
|
|
|
+ this->_setMessage(_message);
|
|
|
}
|
|
|
|
|
|
IllegalArithmeticOperationException::~IllegalArithmeticOperationException() noexcept = default;
|