forked from tyassine/CooCoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exceptionCooCoo.h
53 lines (43 loc) · 864 Bytes
/
exceptionCooCoo.h
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
#ifndef EXCEPTIONCOOCOO_H
#define EXCEPTIONCOOCOO_H
/*!
* \file exceptionCooCoo.h
* \author Letellier/Yassine
* \brief Gestion d'exceptions
*/
#include <QString>
#include <iostream>
#include <exception>
using namespace std;
/*! \class ExceptionCooCoo
* \brief Classe d'exception
*
* Derive de std::exception
*
*
*/
class ExceptionCooCoo :public exception
{
std::string infos;/*!< Description de l'exception*/
public:
/*!
* \brief Constructeur
*
* Construit une exception a partir d'une chaine de caracteres
*
*/
ExceptionCooCoo(const char * s="") : infos(s){}
/*!
* \brief GetInfos
*
* Permet d'en savoir plus sur la cause de l'erreur
*/
const char* GetInfos() const throw(){return infos.c_str();}
/*!
* \brief Destructeur
*
*
*/
~ExceptionCooCoo() throw(){}
};
#endif // EXCEPTIONCOOCOO_H