forked from augcampos/asterisk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRuntimeException.cpp
More file actions
120 lines (74 loc) · 3.2 KB
/
RuntimeException.cpp
File metadata and controls
120 lines (74 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/************************************
* Package: RGcpp *
* Authors: Rui Eduardo Gouveia Gil *
* Date: 2010 *
************************************/
#include "asteriskcpp/exceptions/RuntimeException.h"
namespace asteriskcpp {
RuntimeException::RuntimeException(const std::string& message) :
Exception("RuntimeException", message) {
}
RuntimeException::RuntimeException(const std::string& name, const std::string& message) :
Exception(name, message) {
}
ArithmeticException::ArithmeticException(const std::string& message) :
RuntimeException("ArithmeticException", message) {
}
ArrayStoreException::ArrayStoreException(const std::string& message) :
RuntimeException("ArrayStoreException", message) {
}
BufferOverflowException::BufferOverflowException(const std::string& message) :
RuntimeException("BufferOverflowException", message) {
}
BufferUnderflowException::BufferUnderflowException(const std::string& message) :
RuntimeException("BufferUnderflowException", message) {
}
ClassCastException::ClassCastException(const std::string& message) :
RuntimeException("ClassCastException", message) {
}
DOMException::DOMException(const std::string& message) :
RuntimeException("DOMException", message) {
}
EmptyStackException::EmptyStackException(const std::string& message) :
RuntimeException("EmptyStackException", message) {
}
IllegalArgumentException::IllegalArgumentException(const std::string& message) :
RuntimeException("IllegalArgumentException", message) {
}
IllegalStateException::IllegalStateException(const std::string& message) :
RuntimeException("IllegalStateException", message) {
}
IndexOutOfBoundsException::IndexOutOfBoundsException(const std::string& message) :
RuntimeException("IndexOutOfBoundsException", message) {
}
MissingResourceException::MissingResourceException(const std::string& message) :
RuntimeException("MissingResourceException", message) {
}
NoSuchElementException::NoSuchElementException(const std::string& message) :
RuntimeException("NoSuchElementException", message) {
}
NoMoreElementsException::NoMoreElementsException(const std::string& message) :
RuntimeException("NoMoreElementsException", message) {
}
NullPointerException::NullPointerException(const std::string& message) :
RuntimeException("NullPointerException", message) {
}
SecurityException::SecurityException(const std::string& message) :
RuntimeException("SecurityException", message) {
}
SystemException::SystemException(const std::string& message) :
RuntimeException("SystemException", message) {
}
UnsupportedOperationException::UnsupportedOperationException(const std::string& message) :
RuntimeException("UnsupportedOperationException", message) {
}
ConfigException::ConfigException(const std::string& message) :
RuntimeException("ConfigException", message) {
}
SQLException::SQLException(const std::string& message) :
Exception("SQLException", message) {
}
ZIPException::ZIPException(const std::string& message) :
Exception("ZIPException", message) {
}
}