Ditto
3.0.11
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Typedefs
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Functions
a
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Pages
Loading...
Searching...
No Matches
include
Errors.hpp
1
#ifndef _DITTO_ERRORS_
2
#define _DITTO_ERRORS_
3
4
#include <exception>
5
#include <string>
6
7
namespace
ditto {
14
class
DittoError
:
public
std::exception {
15
std::string message;
16
17
public
:
18
DittoError
();
19
explicit
DittoError
(std::string msg);
20
26
const
char
*
what
()
const
noexcept
override
;
27
};
28
}
// namespace ditto
29
30
#endif
ditto::DittoError
All errors that are thrown by the Ditto SDK are wrapped as a DittoError.
Definition
Errors.hpp:14
ditto::DittoError::what
const char * what() const noexcept override
Returns the explanatory string.
Definition
Errors.cpp:18
Generated by
1.9.7