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 vexceptionconversionerror.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-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2013-11-15 13:41:26 +01:00
|
|
|
** 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
|
|
|
|
|
|
|
#ifndef VEXCEPTIONCONVERSIONERROR_H
|
|
|
|
#define VEXCEPTIONCONVERSIONERROR_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QString>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifcdef.h"
|
2013-09-23 14:08:06 +02:00
|
|
|
#include "vexception.h"
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2013-11-20 12:27:21 +01:00
|
|
|
* @brief The VExceptionConversionError class for exception of conversion error
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VExceptionConversionError : public VException
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
public:
|
2015-11-02 18:02:41 +01:00
|
|
|
VExceptionConversionError(const QString &error, const QString &str);
|
2014-06-02 16:28:02 +02:00
|
|
|
VExceptionConversionError(const VExceptionConversionError &e);
|
2017-04-06 14:50:15 +02:00
|
|
|
VExceptionConversionError &operator=(const VExceptionConversionError &e);
|
2017-04-01 16:27:55 +02:00
|
|
|
virtual ~VExceptionConversionError() V_NOEXCEPT_EXPR (true) Q_DECL_EQ_DEFAULT;
|
2019-01-18 16:01:38 +01:00
|
|
|
|
|
|
|
Q_NORETURN virtual void raise() const override { throw *this; }
|
|
|
|
|
|
|
|
Q_REQUIRED_RESULT virtual VExceptionConversionError *clone() const override
|
|
|
|
{ return new VExceptionConversionError(*this); }
|
|
|
|
|
2018-06-26 14:53:48 +02:00
|
|
|
virtual QString ErrorMessage() const override;
|
2014-02-26 09:18:59 +01:00
|
|
|
QString String() const;
|
2013-09-23 14:08:06 +02:00
|
|
|
protected:
|
2014-06-02 16:28:02 +02:00
|
|
|
/** @brief str string, where happend error */
|
2013-10-26 21:30:20 +02:00
|
|
|
QString str;
|
2013-09-23 14:08:06 +02:00
|
|
|
};
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief String return string, where happend error
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString VExceptionConversionError::String() const
|
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2013-09-23 14:08:06 +02:00
|
|
|
#endif // VEXCEPTIONCONVERSIONERROR_H
|