2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vexception.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-23 14:08:06 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-23 14:08:06 +02:00
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-23 14:08:06 +02:00
|
|
|
|
|
|
|
#include "vexception.h"
|
2015-06-15 13:43:41 +02:00
|
|
|
#include "../vmisc/logging.h"
|
|
|
|
#include "../vmisc/def.h"
|
2015-04-01 14:51:54 +02:00
|
|
|
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QGridLayout>
|
2014-01-19 11:00:20 +01:00
|
|
|
#include <QMessageBox>
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QSpacerItem>
|
|
|
|
#include <QApplication>
|
2014-11-20 18:52:51 +01:00
|
|
|
|
2015-10-20 16:32:01 +02:00
|
|
|
//Q_LOGGING_CATEGORY(vExcep, "v.excep") //Commented because don't use now
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief VException constructor exception
|
|
|
|
* @param what string with error
|
|
|
|
*/
|
2015-11-02 18:02:41 +01:00
|
|
|
VException::VException(const QString &error)
|
|
|
|
:QException(), error(error), moreInfo(QString())
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-11-02 18:02:41 +01:00
|
|
|
Q_ASSERT_X(not error.isEmpty(), Q_FUNC_INFO, "Error message is empty");
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief VException copy constructor
|
|
|
|
* @param e exception
|
|
|
|
*/
|
2015-11-02 18:02:41 +01:00
|
|
|
VException::VException(const VException &e):error(e.WhatUtf8()), moreInfo(e.MoreInformation())
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2014-03-14 16:59:28 +01:00
|
|
|
|
2014-10-18 18:33:49 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VException &VException::operator=(const VException &e)
|
|
|
|
{
|
|
|
|
if ( &e == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
2015-11-02 18:02:41 +01:00
|
|
|
this->error = e.WhatUtf8();
|
2014-10-18 18:33:49 +02:00
|
|
|
this->moreInfo = e.MoreInformation();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief ErrorMessage return main error message
|
|
|
|
* @return error message
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
QString VException::ErrorMessage() const
|
|
|
|
{
|
2015-11-02 18:02:41 +01:00
|
|
|
return QString("Exception: %1").arg(error);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2014-01-19 11:00:20 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief AddMoreInformation add more information for error
|
|
|
|
* @param info information
|
|
|
|
*/
|
2014-03-14 16:59:28 +01:00
|
|
|
void VException::AddMoreInformation(const QString &info)
|
|
|
|
{
|
|
|
|
if (info.isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
moreInfo = QString("%1\n%2").arg(moreInfo, info);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-03-14 16:59:28 +01:00
|
|
|
QString VException::MoreInfo(const QString &detInfo) const
|
|
|
|
{
|
|
|
|
if (moreInfo.isEmpty() == false)
|
|
|
|
{
|
|
|
|
return QString("%1\n%2").arg(moreInfo, detInfo);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return detInfo;
|
|
|
|
}
|
|
|
|
}
|
2014-06-02 09:43:27 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DetailedInformation return detailed information about error
|
|
|
|
* @return detailed information
|
|
|
|
*/
|
2014-06-02 09:43:27 +02:00
|
|
|
QString VException::DetailedInformation() const
|
|
|
|
{
|
|
|
|
return moreInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief clone clone exception
|
|
|
|
* @return new exception
|
|
|
|
*/
|
2014-06-16 19:08:23 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-06-02 09:43:27 +02:00
|
|
|
VException *VException::clone() const
|
|
|
|
{
|
|
|
|
return new VException(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief raise method raise for exception
|
|
|
|
*/
|
2015-04-15 14:44:57 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-06-02 16:28:02 +02:00
|
|
|
Q_NORETURN void VException::raise() const
|
2014-06-02 09:43:27 +02:00
|
|
|
{
|
|
|
|
throw *this;
|
|
|
|
}
|
2015-11-02 17:25:29 +01:00
|
|
|
|
2015-11-02 18:02:41 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const char* VException::what() const V_NOEXCEPT_EXPR (true)
|
|
|
|
{
|
|
|
|
return error.toUtf8().constData();
|
|
|
|
}
|
|
|
|
|
2015-11-02 17:25:29 +01:00
|
|
|
//-----------------------------------------VExceptionToolWasDeleted----------------------------------------------------
|
2015-11-02 18:02:41 +01:00
|
|
|
VExceptionToolWasDeleted::VExceptionToolWasDeleted(const QString &error)
|
|
|
|
:VException(error)
|
2015-11-02 17:25:29 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VExceptionToolWasDeleted::VExceptionToolWasDeleted(const VExceptionToolWasDeleted &e)
|
|
|
|
:VException(e)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VExceptionToolWasDeleted &VExceptionToolWasDeleted::operator=(const VExceptionToolWasDeleted &e)
|
|
|
|
{
|
|
|
|
if ( &e == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
VException::operator=(e);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief raise method raise for exception
|
|
|
|
*/
|
|
|
|
// cppcheck-suppress unusedFunction
|
|
|
|
Q_NORETURN void VExceptionToolWasDeleted::VExceptionToolWasDeleted::raise() const
|
|
|
|
{
|
|
|
|
throw *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VExceptionToolWasDeleted *VExceptionToolWasDeleted::clone() const
|
|
|
|
{
|
|
|
|
return new VExceptionToolWasDeleted(*this);
|
|
|
|
}
|