-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExceptions.h
63 lines (52 loc) · 1.4 KB
/
Exceptions.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
54
55
56
57
58
59
60
61
62
63
/*
* File: Exceptions.h
* Author: martin
*
* Created on 7 décembre 2014, 19:08
*/
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
#include <exception>
#include <string>
using namespace std;
// Classe mère de toutes les exceptions de l'interpréteur
class InterpreteurException : public exception {
public:
const char * what() const throw() override {
return "Exception Interpreteur";
}
};
class FichierException : public InterpreteurException {
public:
const char * what() const throw() override {
return "Ouverture Fichier Impossible";
}
};
class SyntaxeException : public InterpreteurException {
public:
SyntaxeException(const char * message = NULL) : m_message(message) {}
const char * what() const throw() override {
return m_message;
}
private :
const char* m_message;
};
class IndefiniException : public InterpreteurException {
public:
const char * what() const throw() override {
return "Valeur Indéfinie";
}
};
class DivParZeroException : public InterpreteurException {
public:
const char * what() const throw() override {
return "Division par 0";
}
};
class OperationInterditeException : public InterpreteurException {
public:
const char * what() const throw() override {
return "Operation Interdite sur un noeud";
}
};
#endif /* EXCEPTIONS_H */