2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-11-04 21:38:54 +01:00
|
|
|
**
|
2014-03-03 18:32:38 +01:00
|
|
|
** @file vexceptionwrongparameterid.h
|
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-11-04 21:38:54 +01: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-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-11-04 21:38:54 +01: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.
|
|
|
|
**
|
|
|
|
** Valentina 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 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-11-04 21:38:54 +01:00
|
|
|
|
2014-03-03 18:32:38 +01:00
|
|
|
#ifndef VEXCEPTIONWRONGID_H
|
|
|
|
#define VEXCEPTIONWRONGID_H
|
2013-10-07 11:13:24 +02:00
|
|
|
|
|
|
|
#include "vexception.h"
|
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
class QDomElement;
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-03-03 18:32:38 +01:00
|
|
|
* @brief The VExceptionWrongId class for exception wrong id
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-03-03 18:32:38 +01:00
|
|
|
class VExceptionWrongId : public VException
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-07 11:13:24 +02:00
|
|
|
public:
|
2014-03-03 18:32:38 +01:00
|
|
|
VExceptionWrongId(const QString &what, const QDomElement &domElement);
|
|
|
|
VExceptionWrongId(const VExceptionWrongId &e);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VExceptionWrongId() V_NOEXCEPT_EXPR (true) Q_DECL_OVERRIDE {}
|
|
|
|
virtual QString ErrorMessage() const Q_DECL_OVERRIDE;
|
|
|
|
virtual QString DetailedInformation() const Q_DECL_OVERRIDE;
|
2014-02-26 09:18:59 +01:00
|
|
|
QString TagText() const;
|
|
|
|
QString TagName() const;
|
|
|
|
qint32 LineNumber() const;
|
2013-10-07 11:13:24 +02:00
|
|
|
protected:
|
2014-06-02 16:28:02 +02:00
|
|
|
/** @brief tagText tag text */
|
2013-10-26 21:30:20 +02:00
|
|
|
QString tagText;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief tagName tag name */
|
2013-10-26 21:30:20 +02:00
|
|
|
QString tagName;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief lineNumber line number */
|
2013-10-26 21:30:20 +02:00
|
|
|
qint32 lineNumber;
|
2013-10-07 11:13:24 +02:00
|
|
|
};
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief TagText return tag text
|
|
|
|
* @return tag text
|
|
|
|
*/
|
2014-03-03 18:32:38 +01:00
|
|
|
inline QString VExceptionWrongId::TagText() const
|
2014-02-26 09:18:59 +01:00
|
|
|
{
|
|
|
|
return tagText;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief TagName return tag name
|
|
|
|
* @return tag name
|
|
|
|
*/
|
2014-03-03 18:32:38 +01:00
|
|
|
inline QString VExceptionWrongId::TagName() const
|
2014-02-26 09:18:59 +01:00
|
|
|
{
|
|
|
|
return tagName;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief LineNumber return line number in file
|
|
|
|
* @return line number
|
|
|
|
*/
|
2014-03-03 18:32:38 +01:00
|
|
|
inline qint32 VExceptionWrongId::LineNumber() const
|
2014-02-26 09:18:59 +01:00
|
|
|
{
|
|
|
|
return lineNumber;
|
|
|
|
}
|
|
|
|
|
2014-03-03 18:32:38 +01:00
|
|
|
#endif // VEXCEPTIONWRONGID_H
|