12 lines
170 B
C++
12 lines
170 B
C++
|
#include "simsbasic.h"
|
||
|
|
||
|
|
||
|
UniException::UniException(const QString& msg)
|
||
|
:_error_store(msg) {
|
||
|
}
|
||
|
|
||
|
QString UniException::content() const noexcept
|
||
|
{
|
||
|
return _error_store;
|
||
|
}
|