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 vexceptionemptyparameter.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 "vexceptionemptyparameter.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
#include <QDomElement>
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QTextStream>
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief VExceptionEmptyParameter exception empty parameter
|
|
|
|
* @param what string with error
|
|
|
|
* @param name name of attribute where error
|
|
|
|
* @param domElement dom element
|
|
|
|
*/
|
2013-09-23 14:08:06 +02:00
|
|
|
VExceptionEmptyParameter::VExceptionEmptyParameter(const QString &what, const QString &name,
|
2013-11-04 21:35:15 +01:00
|
|
|
const QDomElement &domElement)
|
|
|
|
: VException(what), name(name), tagText(QString()), tagName(QString()), lineNumber(-1)
|
|
|
|
{
|
2015-10-28 15:22:36 +01:00
|
|
|
Q_ASSERT_X(not domElement.isNull(), Q_FUNC_INFO, "domElement is null");
|
|
|
|
Q_ASSERT_X(not name.isEmpty(), Q_FUNC_INFO, "Parameter name is empty");
|
2013-10-07 11:13:24 +02:00
|
|
|
QTextStream stream(&tagText);
|
|
|
|
domElement.save(stream, 4);
|
2013-09-23 14:08:06 +02:00
|
|
|
tagName = domElement.tagName();
|
|
|
|
lineNumber = domElement.lineNumber();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief VExceptionEmptyParameter copy constructor
|
|
|
|
* @param e exception
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
VExceptionEmptyParameter::VExceptionEmptyParameter(const VExceptionEmptyParameter &e)
|
|
|
|
:VException(e), name(e.Name()), tagText(e.TagText()), tagName(e.TagName()), lineNumber(e.LineNumber())
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2014-02-26 09:18:59 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-10-17 22:26:30 +02:00
|
|
|
VExceptionEmptyParameter::~VExceptionEmptyParameter() V_NOEXCEPT_EXPR (true)
|
2014-06-02 16:28:02 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief ErrorMessage return main error message
|
|
|
|
* @return main error message
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
QString VExceptionEmptyParameter::ErrorMessage() const
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
QString error = QString("ExceptionEmptyParameter: %1 %2").arg(what, name);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DetailedInformation return detailed information about error
|
|
|
|
* @return detailed information
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
QString VExceptionEmptyParameter::DetailedInformation() const
|
|
|
|
{
|
2014-03-14 16:59:28 +01:00
|
|
|
return MoreInfo(QString("tag: %1 in line %2\nFull tag:\n%3").arg(tagName).arg(lineNumber).arg(tagText));
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|