]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blob - src/exception.h
Exceptions
[z.facultad/75.52/treemulator.git] / src / exception.h
1
2 #ifndef _EXCEPTION_H_
3 #define _EXCEPTION_H_
4
5 #include <string>
6
7 class Exception {
8         public:
9                 virtual std::string Message () { return "Error desconocido"; }
10 };
11
12 class AddException : public Exception  {
13         public:
14                 virtual std::string Message () { return "No se pudo agregar la clave."; }
15 };
16
17 class DelException : public Exception {
18         public:
19                 virtual std::string Message () { return "No se pudo eliminar la clave."; }
20 };
21
22 #endif
23