mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-01 06:15:32 +00:00
74 lines
1.8 KiB
C++
74 lines
1.8 KiB
C++
/*!
|
|
@file
|
|
@author Albert Semenov
|
|
@date 05/2009
|
|
@module
|
|
*/
|
|
/*
|
|
This file is part of MyGUI.
|
|
|
|
MyGUI is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
MyGUI is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "MyGUI_Precompiled.h"
|
|
#include "MyGUI_Exception.h"
|
|
#include "MyGUI_Utility.h"
|
|
|
|
namespace MyGUI
|
|
{
|
|
|
|
Exception::Exception(const std::string& _description, const std::string& _source, const char* _file, long _line ) :
|
|
mDescription(_description),
|
|
mSource(_source),
|
|
mFile(_file),
|
|
mLine(_line)
|
|
{
|
|
}
|
|
|
|
Exception::Exception(const Exception& _rhs) :
|
|
mDescription(_rhs.mDescription),
|
|
mSource(_rhs.mSource),
|
|
mFile(_rhs.mFile),
|
|
mLine(_rhs.mLine)
|
|
{
|
|
}
|
|
|
|
Exception& Exception::operator = (const Exception& _rhs)
|
|
{
|
|
mDescription = _rhs.mDescription;
|
|
mSource = _rhs.mSource;
|
|
mFile = _rhs.mFile;
|
|
mLine = _rhs.mLine;
|
|
mFullDesc = _rhs.mFullDesc;
|
|
return *this;
|
|
}
|
|
|
|
|
|
const std::string& Exception::getFullDescription() const
|
|
{
|
|
if (mFullDesc.empty())
|
|
{
|
|
if ( mLine > 0 )
|
|
{
|
|
mFullDesc = utility::toString("MyGUI EXCEPTION : ", mDescription, " in ", mSource, " at ", mFile, " (line ", mLine, ")");
|
|
}
|
|
else
|
|
{
|
|
mFullDesc = utility::toString("MyGUI EXCEPTION : ", mDescription, " in ", mSource);
|
|
}
|
|
}
|
|
|
|
return mFullDesc;
|
|
}
|
|
|
|
} // namespace MyGUI
|