Graine
Génération procédurale de créatures et apprentissage par réseaux de neurones.
Main Page
Related Pages
Classes
Files
File List
File Members
Documents
GitHub
World_Of_Swag_IA
src
exception
EventListNotCreatedException.hpp
Go to the documentation of this file.
1
#ifndef EVENT_LIST_NOT_CREATED_EXCEPTION
2
#define EVENT_LIST_NOT_CREATED_EXCEPTION
3
4
#include <exception>
5
#include <string>
6
7
using namespace
std
;
8
9
class
EventListNotCreatedException
:
public
exception
10
{
11
12
private
:
13
string
message;
14
15
public
:
16
17
EventListNotCreatedException
(
string
const
& phrase=
""
)
throw
();
18
virtual
~
EventListNotCreatedException
()
throw
();
19
20
virtual
const
char
* what()
const
throw
();
21
};
22
23
#endif
EventListNotCreatedException
Definition:
EventListNotCreatedException.hpp:9
std
Generated by
1.8.11