CBMC
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
e
f
g
j
l
m
r
t
w
Functions
a
c
d
f
g
r
t
w
Typedefs
Enumerations
Classes
Class List
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Related Symbols
b
c
d
e
g
i
j
m
n
o
s
t
u
v
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
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
w
y
Typedefs
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Enumerations
_
a
b
c
d
f
g
i
l
m
p
r
s
t
u
v
w
Enumerator
_
a
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
base_exceptions.h
Go to the documentation of this file.
1
/*******************************************************************\
2
3
Module: Util base exceptions
4
5
Author: Diffblue Ltd.
6
7
\*******************************************************************/
8
11
12
#ifndef CPROVER_UTIL_BASE_EXCEPTIONS_H
13
#define CPROVER_UTIL_BASE_EXCEPTIONS_H
14
15
#include "
invariant.h
"
16
17
class
bad_cast_exceptiont
:
public
invariant_failedt
18
{
19
public
:
20
// Normally we'd prefer
21
// using invariant_failedt::invariant_failedt;
22
// However, this isn't supported on VS2013.
23
24
template
<
typename
...
Ts
>
25
explicit
bad_cast_exceptiont
(
Ts
&&...
ts
):
26
invariant_failedt
(
std
::
forward
<
Ts
>(
ts
)...) {}
25
explicit
bad_cast_exceptiont
(
Ts
&&...
ts
): {
…
}
27
};
17
class
bad_cast_exceptiont
:
public
invariant_failedt
{
…
};
28
29
class
nullptr_exceptiont
:
public
invariant_failedt
30
{
31
public
:
32
template
<
typename
...
Ts
>
33
explicit
nullptr_exceptiont
(
Ts
&&...
ts
):
34
invariant_failedt
(
std
::
forward
<
Ts
>(
ts
)...) {}
33
explicit
nullptr_exceptiont
(
Ts
&&...
ts
): {
…
}
35
};
29
class
nullptr_exceptiont
:
public
invariant_failedt
{
…
};
36
37
#endif
ait
ait supplies three of the four components needed: an abstract interpreter (in this case handling func...
Definition
ai.h:562
bad_cast_exceptiont
Definition
base_exceptions.h:18
bad_cast_exceptiont::bad_cast_exceptiont
bad_cast_exceptiont(Ts &&...ts)
Definition
base_exceptions.h:25
invariant_failedt
A logic error, augmented with a distinguished field to hold a backtrace.
Definition
c_errors.h:28
nullptr_exceptiont
Definition
base_exceptions.h:30
nullptr_exceptiont::nullptr_exceptiont
nullptr_exceptiont(Ts &&...ts)
Definition
base_exceptions.h:33
std
STL namespace.
invariant.h
src
util
base_exceptions.h
Generated by
1.9.8