KD SOAP  1.8.0
KDSoapFaultException.h
1 /****************************************************************************
2 ** Copyright (C) 2010-2019 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
3 ** All rights reserved.
4 **
5 ** This file is part of the KD Soap library.
6 **
7 ** Licensees holding valid commercial KD Soap licenses may use this file in
8 ** accordance with the KD Soap Commercial License Agreement provided with
9 ** the Software.
10 **
11 **
12 ** This file may be distributed and/or modified under the terms of the
13 ** GNU Lesser General Public License version 2.1 and version 3 as published by the
14 ** Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
15 **
16 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
17 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 **
19 ** Contact info@kdab.com if any conditions of this licensing are not
20 ** clear to you.
21 **
22 **********************************************************************/
23 
24 #ifndef KDSOAPFAULTEXCEPTION_H
25 #define KDSOAPFAULTEXCEPTION_H
26 
27 #include <QString>
28 #include "KDSoapValue.h"
29 
38 class KDSOAP_EXPORT KDSoapFaultException
39 {
40 public:
45  void deserialize(const KDSoapValue &mainValue);
46 
51  static const KDSoapValue &faultDetails(const KDSoapValue &faultValue);
52 
56  QString faultCode() const;
57 
62  void setFaultCode(const QString &faultCode);
63 
67  QString faultString() const;
68 
73  void setFaultString(const QString &faultString);
74 
78  QString faultActor() const;
79 
84  void setFaultActor(const QString &faultActor);
85 
91  KDSoapValue detailValue() const;
92 
97  void setDetailValue(const KDSoapValue &detailValue);
98 
103 
108 
116  KDSoapFaultException(const QString &faultCode, const QString &faultString, const QString &faultActor = QString());
117 
121  KDSoapFaultException &operator=(const KDSoapFaultException &other);
122 
127 
128 private:
129  class Private;
130  QSharedDataPointer<Private> d;
131 };
132 
133 #endif // KDSOAPFAULTEXCEPTION_H
Definition: KDSoapValue.h:76
Definition: KDSoapFaultException.h:38

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-soap/