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 vexceptionbadid.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
|
|
|
|
** 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
|
|
|
|
|
|
|
#ifndef VEXCEPTIONBADID_H
|
|
|
|
#define VEXCEPTIONBADID_H
|
|
|
|
|
|
|
|
#include "vexception.h"
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2013-11-20 12:27:21 +01:00
|
|
|
* @brief The VExceptionBadId class for exception bad id
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VExceptionBadId : public VException
|
|
|
|
{
|
2013-09-23 14:08:06 +02:00
|
|
|
public:
|
2014-06-02 16:28:02 +02:00
|
|
|
VExceptionBadId(const QString &what, const quint32 &id);
|
|
|
|
VExceptionBadId(const QString &what, const QString &key);
|
|
|
|
VExceptionBadId(const VExceptionBadId &e);
|
2014-10-18 18:33:49 +02:00
|
|
|
VExceptionBadId &operator=(const VExceptionBadId &e);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VExceptionBadId() V_NOEXCEPT_EXPR (true) Q_DECL_OVERRIDE {}
|
|
|
|
virtual QString ErrorMessage() const Q_DECL_OVERRIDE;
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 BadId() const;
|
|
|
|
QString BadKey() const;
|
2013-09-23 14:08:06 +02:00
|
|
|
protected:
|
2014-06-02 16:28:02 +02:00
|
|
|
/** @brief id id */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id;
|
2014-06-02 16:28:02 +02:00
|
|
|
|
|
|
|
/** @brief key key */
|
2013-10-26 21:30:20 +02:00
|
|
|
QString key;
|
2013-09-23 14:08:06 +02:00
|
|
|
};
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief BadId return bad id
|
|
|
|
* @return id
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 VExceptionBadId::BadId() const
|
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2014-06-02 16:28:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief BadKey return bad key
|
|
|
|
* @return key
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline QString VExceptionBadId::BadKey() const
|
|
|
|
{
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
2013-09-23 14:08:06 +02:00
|
|
|
#endif // VEXCEPTIONBADID_H
|