-
Notifications
You must be signed in to change notification settings - Fork 2
/
Exception.h
41 lines (34 loc) · 920 Bytes
/
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
#ifndef EXCEPTION_H
#define EXCEPTION_H
#include <string>
#include <exception>
#include "libgit2wrapper_global.h"
namespace Git
{
/**
* @brief Az Exception kivételosztály a LibGitException ősosztálya. Csak azon keresztül példányosítható.
*/
class LIBGIT2WRAPPERSHARED_EXPORT Exception : public std::exception
{
private:
std::string message;
protected:
/**
* @brief Exception konstruktor
* @param _message A kivétel által tartalmazott üzenet.
*/
Exception(const std::string& _message = "") : message(_message)
{
}
public:
/**
* @brief what Lekérdező metódus kivételosztályokhoz.
* @return A kivétel üzenete.
*/
virtual const char* what() const noexcept
{
return ( message.c_str() );
}
};
}
#endif //EXCEPTION_H