BOSS
7.0.4
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
_
e
f
g
h
i
l
m
o
p
r
s
t
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
Files
File List
File Members
All
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
!
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
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
16
namespace
XmlRpc
{
17
18
//! A class representing an error.
19
//! If server methods throw this exception, a fault response is returned
20
//! to the client.
21
class
XmlRpcException
{
22
public
:
23
//! Constructor
24
//! @param message A descriptive error message
25
//! @param code An integer error code
26
XmlRpcException
(
const
std::string& message,
int
code=-1) :
27
_message(message), _code(code) {}
28
29
//! Return the error message.
30
const
std::string&
getMessage
()
const
{
return
_message; }
31
32
//! Return the error code.
33
int
getCode
()
const
{
return
_code; }
34
35
private
:
36
std::string _message;
37
int
_code;
38
};
39
40
}
41
42
#endif
// _XMLRPCEXCEPTION_H_
XmlRpc::XmlRpcException
Definition:
XmlRpcException.h:21
XmlRpc::XmlRpcException::getCode
int getCode() const
Return the error code.
Definition:
XmlRpcException.h:33
XmlRpc::XmlRpcException::getMessage
const std::string & getMessage() const
Return the error message.
Definition:
XmlRpcException.h:30
XmlRpc::XmlRpcException::XmlRpcException
XmlRpcException(const std::string &message, int code=-1)
Definition:
XmlRpcException.h:26
XmlRpc
Definition:
XmlRpc.h:35
source
Utilities
JobInfoSvc
JobInfoSvc-00-00-02
xmlrpc++0.7
src
XmlRpcException.h
Generated by
1.9.6