Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
d
f
g
i
m
n
p
r
s
t
v
x
Functions
Variables
Enumerations
Enumerator
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
~
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
~
+
Variables
_
a
b
c
d
e
f
h
i
l
m
p
r
s
Typedefs
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
x
+
Functions
_
a
b
c
e
h
i
l
m
n
o
p
s
t
+
Variables
a
b
c
d
e
f
g
h
l
n
p
r
s
x
Enumerations
Enumerator
Macros
include
xmlrpcpp
XmlRpcException.h
Go to the documentation of this file.
1
2
#ifndef _XMLRPCEXCEPTION_H_
3
#define _XMLRPCEXCEPTION_H_
4
//
5
// XmlRpc++ Copyright (c) 2002-2003 by Chris Morley
6
//
7
#if defined(_MSC_VER)
8
# pragma warning(disable:4786) // identifier was truncated in debug info
9
#endif
10
11
#ifndef MAKEDEPEND
12
# include <string>
13
#endif
14
15
#include "
xmlrpcpp/XmlRpcDecl.h
"
16
17
18
namespace
XmlRpc
{
19
23
class
XMLRPCPP_DECL
XmlRpcException
{
24
public
:
28
XmlRpcException
(
const
std::string& message,
int
code=-1) :
29
_message(message), _code(code) {}
30
32
const
std::string&
getMessage
()
const
{
return
_message; }
33
35
int
getCode
()
const
{
return
_code; }
36
37
private
:
38
std::string
_message
;
39
int
_code
;
40
};
41
42
}
43
44
#endif // _XMLRPCEXCEPTION_H_
XmlRpc::XmlRpcException
Definition:
XmlRpcException.h:23
XmlRpc
Definition:
XmlRpcClient.h:20
XmlRpc::XmlRpcException::getMessage
const std::string & getMessage() const
Return the error message.
Definition:
XmlRpcException.h:32
XmlRpc::XmlRpcException::XmlRpcException
XmlRpcException(const std::string &message, int code=-1)
Definition:
XmlRpcException.h:28
XMLRPCPP_DECL
#define XMLRPCPP_DECL
Definition:
XmlRpcDecl.h:52
XmlRpc::XmlRpcException::getCode
int getCode() const
Return the error code.
Definition:
XmlRpcException.h:35
XmlRpcDecl.h
XmlRpc::XmlRpcException::_message
std::string _message
Definition:
XmlRpcException.h:38
XmlRpc::XmlRpcException::_code
int _code
Definition:
XmlRpcException.h:39
xmlrpcpp
Author(s): Chris Morley, Konstantin Pilipchuk, Morgan Quigley, Austin Hendrix, Dirk Thomas
autogenerated on Mon Feb 28 2022 23:33:22