-
Notifications
You must be signed in to change notification settings - Fork 0
/
exception.h
93 lines (74 loc) · 1.69 KB
/
exception.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
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
/*
* exception.h
* Author: pperezm
*/
#ifndef EXCEPTION_H_
#define EXCEPTION_H_
#include <exception>
#include <string>
#include <cstdio>
/*********** Exception ***********/
class Exception : public std::exception {
protected:
std::string text;
public:
Exception() throw();
~Exception() throw();
virtual const char* what() const throw();
};
Exception::Exception() throw ()
: text("Basic exception") {
}
Exception::~Exception() throw () {}
const char* Exception::what() const throw() {
return text.c_str();
}
/*********** RangeError ***********/
class RangeError : public Exception {
public:
RangeError() throw();
};
RangeError::RangeError() throw () {
text = std::string("RangeError");
}
/*********** OutOfMemory ***********/
class OutOfMemory : public Exception {
public:
OutOfMemory() throw();
};
OutOfMemory::OutOfMemory() throw () {
text = std::string("OutOfMemory");
}
/*********** IndexOutOfBounds ***********/
class IndexOutOfBounds : public Exception {
public:
IndexOutOfBounds() throw();
};
IndexOutOfBounds::IndexOutOfBounds() throw () {
text = std::string("IndexOutOfBounds");
}
/*********** NoSuchElement ***********/
class NoSuchElement : public Exception {
public:
NoSuchElement() throw();
};
NoSuchElement::NoSuchElement() throw () {
text = std::string("NoSuchElement");
}
/*********** IllegalAction ***********/
class IllegalAction : public Exception {
public:
IllegalAction() throw();
};
IllegalAction::IllegalAction() throw () {
text = std::string("IllegalAction");
}
/*********** Overflow ***********/
class Overflow : public Exception {
public:
Overflow() throw();
};
Overflow::Overflow() throw () {
text = std::string("Overflow");
}
#endif /* EXCEPTION_H_ */